/* ====== SELF-HOSTED FONTS ====== */
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/barlow-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/barlow-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/barlow-condensed-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/barlow-condensed-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/barlow-condensed-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/barlow-condensed-700.woff2') format('woff2'); }
@font-face { font-family: 'Rajdhani'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/rajdhani-700.woff2') format('woff2'); }

/* ====== CSS CUSTOM PROPERTIES ====== */
:root {
    --bg: #060606;
    --bg-card: #111111;
    --bg-elevated: #1A1A1A;
    --bg-hover: #1E1E1E;
    --text: #F0F0F0;
    --text-dim: #A0A0A0;
    --text-muted: #606060;
    --accent: #FF4D00;
    --accent-hover: #FF6B2B;
    --accent-glow: rgba(255, 77, 0, 0.08);
    --accent-glow-strong: rgba(255, 77, 0, 0.15);
    --accent-glow-border: rgba(255, 77, 0, 0.2);
    --green: #00FF88;
    --green-dim: rgba(0, 255, 136, 0.12);
    --border: #1A1A1A;
    --border-light: #2A2A2A;
    --radius: 6px;
    --max-w: 1140px;
    --nav-h: 74px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ====== NAVIGATION ====== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(6, 6, 6, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.nav-logo .wordmark {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text);
}

.nav-logo .wordmark .a {
    color: var(--accent);
}

.nav-logo .tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1px;
}

.page-home .nav-logo .tagline {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding: 1.5rem 0;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-search {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: none;
    color: var(--text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    font-size: 0.95rem;
}

.nav-search:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hamburger button (hidden on desktop, flex on mobile) */
.nav-hamburger {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.25rem 0;
}

.nav-hamburger-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.nav-hamburger-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ====== MOBILE NAV DRAWER (slide-in from right) ====== */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 80%;
    max-width: 340px;
    margin: 0;
    padding: 0;
    border: none;
    background: var(--bg-card);
    color: var(--text);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 200;
}

.nav-drawer[open] {
    transform: translateX(100%);
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer::backdrop {
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s ease;
}

.nav-drawer.open::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.nav-drawer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
}

.nav-drawer-brand .a {
    color: var(--accent);
}

.nav-drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: none;
    color: var(--text-dim);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.nav-drawer-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-drawer-items {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0 1.5rem;
}

.nav-drawer-group {
    border-left: 3px solid transparent;
}

.nav-drawer-group.active {
    border-left-color: var(--accent);
}

.nav-drawer-group.active .nav-drawer-item-label {
    color: var(--accent);
}

.nav-drawer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.nav-drawer-item-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 1rem 0 1rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}

.nav-drawer-item-link:hover,
.nav-drawer-item-link:focus-visible {
    background: rgba(255, 255, 255, 0.04);
}

.nav-drawer-item-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.3;
}

.nav-drawer-item-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-top: 0.15rem;
}

.nav-drawer-item-count {
    flex-shrink: 0;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.25);
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.nav-drawer-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-right: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.nav-drawer-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.nav-drawer-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-drawer-group.open .nav-drawer-chevron {
    transform: rotate(180deg);
}

.nav-drawer-subitems {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.nav-drawer-subitem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem 0.65rem 2rem;
    text-decoration: none;
    color: var(--text-dim);
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    transition: color 0.2s, background 0.2s;
}

.nav-drawer-subitem:hover,
.nav-drawer-subitem:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-drawer-subitem-icon {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

/* ====== MEGA DROPDOWN ====== */
.mega-backdrop {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mega-backdrop.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mega-dropdown {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 95;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease,
                visibility 0.2s ease;
    overflow: hidden;
}

.mega-dropdown.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    gap: 2rem;
}

.mega-inner[data-menu="training"] {
    grid-template-columns: 1fr 1fr 1fr 300px;
}

.mega-inner[data-menu="voeding"],
.mega-inner[data-menu="supplementen"],
.mega-inner[data-menu="races"],
.mega-inner[data-menu="gear"] {
    grid-template-columns: 1fr 1fr 280px;
}

.mega-col-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s, color 0.15s;
}

.mega-link:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

.mega-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.15s;
}

.mega-link:hover .mega-link-icon {
    background: var(--accent-glow-strong);
}

.mega-link-content {
    flex: 1;
    min-width: 0;
}

.mega-link-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mega-link-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.3;
    margin-top: 1px;
}

.mega-link-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--text-dim);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.mega-featured {
    background: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.mega-featured:hover {
    border-color: var(--accent-glow-border);
}

.mega-featured-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--accent-glow-strong) 100%);
}

.mega-featured-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mega-featured-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.mega-featured-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--text);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.15s;
}

.mega-featured-title:hover {
    color: var(--accent);
}

.mega-featured-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-top: 0.5rem;
}

.mega-featured-cta {
    margin-top: auto;
    padding-top: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.15s;
}

.mega-featured-cta:hover {
    gap: 0.6rem;
}

.mega-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mega-footer-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.15s, gap 0.15s;
}

.mega-footer-link:hover {
    color: var(--accent);
    gap: 0.65rem;
}

/* ====== BUTTONS ====== */
.btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.85rem 1.85rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

/* Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

/* Gradient overlay on top of bg image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.6) 0%, rgba(6, 6, 6, 0.3) 40%, rgba(6, 6, 6, 0.85) 100%),
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 77, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Noise texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content--centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 0;
    padding: 3rem 0 2rem;
}

.hero-text {
    max-width: 580px;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

/* Staggered hero text reveal */
.hero h1 .hero-line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 .hero-line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero h1 .hero-line:nth-child(2) {
    animation-delay: 0.55s;
}

.hero h1 .accent {
    display: block;
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
    position: relative;
}

/* Animated glow behind accent text */
.hero h1 .accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #FF6B2B, var(--accent));
    background-size: 200% 100%;
    filter: blur(48px);
    animation: glowShift 4s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.5s forwards;
}

/* Hero: CTA buttons */
.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.65s forwards;
}

/* Hero: trust qualifier */
.hero-qualifier {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.8s forwards;
}

/* Hero: countdown cards */
.hero-countdown-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: all 0.25s ease;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.85s forwards;
}

.hero-countdown-line:first-of-type {
    margin-top: 2.5rem;
}

.hero-countdown-line + .hero-countdown-line {
    margin-top: 0.5rem;
    animation-delay: 1s;
}

.hero-countdown-line:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

/* Hyrox = yellow left border */
.hero-countdown-line:has(.hero-countdown-format.hyrox) {
    border-left-color: #f0c000;
}

/* GymRace = blue left border */
.hero-countdown-line:has(.hero-countdown-format.gymrace) {
    border-left-color: #00b4ff;
}

.hero-countdown-format {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}

.hero-countdown-format.hyrox {
    background: rgba(255, 200, 0, 0.15);
    color: #f0c000;
}

.hero-countdown-format.gymrace {
    background: rgba(0, 180, 255, 0.15);
    color: #00b4ff;
}

.hero-countdown-line strong {
    color: var(--text);
    font-weight: 700;
}

.hero-countdown-sep {
    color: var(--text-muted);
    opacity: 0.4;
}

.hero-countdown-days {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-countdown-days::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-countdown-days strong {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 1.2s forwards;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.scroll-hint.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

.scroll-arrow::after {
    content: '';
    width: 2px;
    height: 6px;
    background: var(--accent);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

/* Chevron arrows below mouse icon */
.scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: -0.15rem;
}

.scroll-chevrons svg {
    width: 14px;
    height: 8px;
    color: var(--accent);
    animation: chevronBounce 1.5s ease-in-out infinite;
}

.scroll-chevrons svg:nth-child(2) {
    opacity: 0.4;
    animation-delay: 0.15s;
    margin-top: -3px;
}

/* ====== KEYFRAMES ====== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(3px); opacity: 1; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ====== SECTION SHARED ====== */
.section-divider {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 0;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    max-width: 520px;
    line-height: 1.6;
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== CONTENT PILLARS ====== */
.pillars {
    padding: 5rem 0;
}

.pillars-header {
    margin-bottom: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.04), var(--bg-card));
}

.pillar-card::after {
    content: '\2192';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}

.pillar-card:hover::after {
    color: var(--accent);
    transform: translateX(4px);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--accent-glow);
    border: 1px solid var(--accent-glow-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.pillar-card:hover .pillar-icon {
    background: var(--accent-glow-strong);
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.65;
}

.pillar-card .pillar-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 1.25rem;
}

.pillars-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.pillar-card.small {
    padding: 1.5rem;
}

.pillar-card.small h3 {
    font-size: 1.2rem;
}

.pillar-card.small p {
    font-size: 0.88rem;
}

.pillar-card.small::after {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.1rem;
}

.pillar-card.small .pillar-icon {
    width: 38px;
    height: 38px;
}

.pillar-card.small .pillar-icon svg {
    width: 18px;
    height: 18px;
}

/* ====== ROAD TO HYROX ====== */
/* ====== ROAD TO HYROX TIMELINE ====== */
.road-section {
    padding: 3.5rem 0 4rem;
}

.road-header {
    margin-bottom: 1.75rem;
}

.road-header__top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.road-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 0.2rem 0.7rem 0.2rem 0.55rem;
    border-radius: 3px;
}

.road-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--bg);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.road-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Timeline wrapper — horizontal scroll */
.road-timeline-wrap {
    position: relative;
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.road-timeline-wrap::-webkit-scrollbar {
    display: none;
}

/* Fade edges to hint scrollability */
.road-timeline-wrap::before,
.road-timeline-wrap::after {
    content: '';
    position: sticky;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    z-index: 2;
    pointer-events: none;
    flex-shrink: 0;
}

.road-timeline-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.road-timeline-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

/* The ordered list timeline */
.road-timeline {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 1.5rem 0 1rem;
    margin: 0;
    position: relative;
    min-width: max-content;
}

/* Connecting line behind all items */
.road-timeline::before {
    content: '';
    position: absolute;
    top: calc(1.5rem + 13px);
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
}

/* Single timeline item */
.road-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    position: relative;
}

.road-timeline__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    padding: 0 0.5rem;
    gap: 0.4rem;
}

a.road-timeline__link:hover .road-timeline__dot {
    transform: scale(1.35);
}

a.road-timeline__link:hover .road-timeline__title {
    color: var(--text);
}

/* The dot on the line */
.road-timeline__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg);
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.road-timeline__item--done .road-timeline__dot {
    background: var(--accent);
    border-color: var(--bg);
}

.road-timeline__item--current .road-timeline__dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--accent), 0 0 12px rgba(255, 77, 0, 0.4);
}

.road-timeline__item--future .road-timeline__dot {
    background: var(--border);
    border-color: var(--bg);
}

/* Week label */
.road-timeline__week {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.road-timeline__item--done .road-timeline__week {
    color: var(--accent);
}

.road-timeline__item--current .road-timeline__week {
    color: var(--accent);
    font-size: 0.9rem;
}

.road-timeline__item--future .road-timeline__week {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Title below */
.road-timeline__title {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 90px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.road-timeline__item--current .road-timeline__title {
    color: var(--text);
    font-weight: 600;
    white-space: normal;
    max-width: 110px;
}

.road-timeline__item--future .road-timeline__title {
    opacity: 0.4;
}

/* "Nieuw" badge on current week */
.road-timeline__badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 0.1rem 0.45rem;
    border-radius: 2px;
}

/* CTA buttons under timeline */
.road-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ====== FEATURED ARTICLES ====== */
.featured {
    padding: 4rem 0 5rem;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.featured-header .view-all {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.featured-header .view-all:hover {
    color: var(--accent);
}

.featured-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.featured-tab {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: color 0.2s;
}

.featured-tab:hover {
    color: var(--text-dim);
}

.featured-tab.active {
    color: var(--accent);
}

.featured-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* -- article grid (2×3, featured first item spans 2 cols) -- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.article-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.article-card--featured {
    grid-column: span 2;
}

.badge-new {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
}

.article-card__img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.article-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__img-wrap .ph-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.article-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.article-card__title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.article-card__title a {
    color: inherit;
    text-decoration: none;
}

.article-card--featured .article-card__title {
    font-size: 1.45rem;
}

.article-card__meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.article-card__meta time {
    color: var(--text-muted);
}

/* -- legacy card styles (used on pillar pages) -- */
.article-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img .ph-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.article-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.article-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: auto;
}

.article-card.compact {
    flex-direction: row;
}

.article-card.compact .article-img {
    width: 150px;
    min-height: 100%;
    aspect-ratio: auto;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
}

.article-card.compact .article-body {
    padding: 1.1rem 1.25rem;
}

.article-card.compact h3 {
    font-size: 1.05rem;
}

/* ====== QUICK TIP ====== */
.tip-section {
    padding: 0 0 5rem;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tip-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-glow-strong);
    border: 1px solid var(--accent-glow-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
}

.tip-content {
    flex: 1;
}

.tip-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.tip-text {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.tip-text strong {
    color: var(--text);
}

/* ====== RACE HUBS ====== */
.hubs {
    padding: 4rem 0;
}

.hubs-header {
    margin-bottom: 2rem;
}

.hubs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hub-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.hub-card:hover {
    transform: translateY(-2px);
}

.hub-card.hyrox {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.04) 0%, var(--bg-card) 50%);
}

.hub-card.hyrox:hover {
    border-color: var(--accent);
}

.hub-card.gymrace {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, var(--bg-card) 50%);
}

.hub-card.gymrace:hover {
    border-color: var(--green);
}

.hub-format {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hub-card.hyrox .hub-format {
    color: var(--accent);
}

.hub-card.gymrace .hub-format {
    color: var(--green);
}

.hub-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.hub-stats {
    display: flex;
    gap: 1.5rem;
}

.hub-stat-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hub-stat-item strong {
    color: var(--text);
    font-size: 1.2rem;
    display: block;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0;
    margin-bottom: 0.1rem;
}

/* ====== RACE CALENDAR ====== */
.calendar {
    padding: 0 0 5rem;
}

.cal-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cal-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.15rem 1rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
    border-radius: 0;
}

.cal-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.cal-item:last-child {
    border-bottom: none;
}

.cal-item.highlight {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.04), transparent);
    border: 1px solid var(--accent-glow-border);
    border-radius: var(--radius);
    margin-bottom: 0.25rem;
    position: relative;
}

.cal-item.highlight .cal-your-race {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.15rem;
}

.cal-item.highlight .cal-countdown {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cal-date {
    text-align: center;
}

.cal-date .month {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    line-height: 1;
}

.cal-date .day {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.1;
}

.cal-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.cal-info .cal-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    text-transform: capitalize;
}

.cal-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}

.cal-badge.hyrox {
    color: var(--accent);
    background: var(--accent-glow-strong);
}

.cal-badge.gymrace {
    color: var(--green);
    background: var(--green-dim);
}

/* ====== ABOUT / E-E-A-T ====== */
.about {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-author {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-glow-strong), var(--bg-elevated));
    border: 1px solid var(--accent-glow-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.author-avatar svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
    opacity: 0.6;
}

.author-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.65;
}

.author-info .cred {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.75rem;
    display: block;
}

.about-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.usp {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.35rem;
    transition: border-color 0.3s;
}

.usp.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.04), var(--bg-card));
    border-color: var(--accent-glow-border);
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
}

.usp-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--accent-glow);
    border: 1px solid var(--accent-glow-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
}

.usp h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.usp p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.usp.primary h4 {
    font-size: 1rem;
}

.usp.primary p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ====== FOOTER ====== */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo .wordmark {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
}

.footer-logo .wordmark .a {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}

.footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ====== PAGE HEADER (section landing pages) ====== */
.page-header {
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.page-header h1 .accent {
    color: var(--accent);
}

.page-header .page-intro {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
}

/* Page header with hero background image */
.page-header--hero {
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
}

.page-header--hero .page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header--hero .page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-header--hero::before {
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.5) 0%, rgba(6, 6, 6, 0.2) 40%, rgba(6, 6, 6, 0.9) 100%),
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 77, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.page-header--hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header--hero .container {
    z-index: 2;
}

/* ====== CONTENT GRID (section pages) ====== */
.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.content-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* ====== ARTICLE LIST ====== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ====== SIMPLE TEXT PAGE ====== */
.text-page {
    padding: 2rem 0 4rem;
    max-width: 720px;
}

.text-page h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2rem 0 0.75rem;
}

.text-page p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.text-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.text-page a:hover {
    color: var(--accent-hover);
}

.text-page ul {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* ====== FAQ SECTION ====== */
.faq-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    content: '\2212';
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
}

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-inner p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.55;
}

.cookie-inner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ====== WORKOUT CARDS ====== */
.workout-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.workout-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.workout-card-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin: 0;
}

.workout-type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--accent-glow-border);
    border-radius: 3px;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

.workout-desc {
    color: var(--text-dim);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.workout-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.workout-table th {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.workout-table td {
    padding: 0.6rem 0.75rem;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.workout-table td:first-child {
    color: var(--text);
    font-weight: 500;
}

.workout-table a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-glow-border);
    transition: color 0.2s, border-color 0.2s;
}

.workout-table a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Article detail page */
.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-layout {
    max-width: 780px;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.article-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}

.article-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.4rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-style: italic;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.article-tag-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: var(--surface-alt);
    color: var(--text-muted);
}

/* ====== SERIES NAV (prev/next in article) ====== */
.series-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.series-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s;
    max-width: 48%;
}
.series-nav-link:hover { border-color: var(--accent); }
.series-nav-link.next { text-align: right; margin-left: auto; }
.series-nav-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.series-nav-title { font-weight: 600; font-size: 0.9rem; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding-top: calc(var(--nav-h) + 2rem);
        padding-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-countdown-line {
        justify-content: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillars-secondary {
        grid-template-columns: 1fr;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-card.compact {
        flex-direction: column;
    }

    .article-card.compact .article-img {
        width: 100%;
        aspect-ratio: 16/9;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .road-timeline__item {
        min-width: 64px;
    }

    .road-timeline__title {
        font-size: 0.65rem;
        max-width: 70px;
    }

    .road-cta {
        flex-direction: column;
    }

    .hubs-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cal-item {
        grid-template-columns: 65px 1fr auto;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    :root {
        --nav-h: 56px;
    }

    body {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mega-dropdown,
    .mega-backdrop {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-h) + 2rem);
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero h1 .accent {
        -webkit-text-stroke-width: 1.5px;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .pillars-secondary {
        grid-template-columns: 1fr 1fr;
    }

    .pillar-card.small:last-child {
        grid-column: 1 / -1;
    }

    .tip-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .about-usps {
        grid-template-columns: 1fr;
    }

    .usp.primary {
        flex-direction: column;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-hint {
        display: none;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-card--featured {
        grid-column: span 1;
    }

    .featured-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .workout-card {
        padding: 1rem;
    }

    .workout-table th:nth-child(5),
    .workout-table td:nth-child(5) {
        display: none;
    }

    .workout-table {
        font-size: 0.8rem;
    }

    .workout-table th,
    .workout-table td {
        padding: 0.45rem 0.5rem;
    }
}

/* ====== EXERCISE FILTERS ====== */
.exercise-filters {
    margin-bottom: 1.5rem;
}

.exercise-search-wrap {
    margin-bottom: 1rem;
}

.exercise-search {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.exercise-search::placeholder {
    color: var(--text-muted);
}

.exercise-search:focus {
    border-color: var(--accent);
}

.exercise-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.exercise-dropdowns {
    display: flex;
    gap: 0.5rem;
}

.exercise-select {
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-dim);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23606060' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.exercise-select:focus {
    border-color: var(--accent);
}

.exercise-select option {
    background: var(--bg-card);
    color: var(--text);
}

/* Exercise status bar */
.exercise-status-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.exercise-counter {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Active filter pills */
.exercise-active-filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 77, 0, 0.12);
    border: 1px solid rgba(255, 77, 0, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.filter-pill:hover {
    background: rgba(255, 77, 0, 0.22);
    border-color: var(--accent);
}

.filter-pill-x {
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.7;
}

.filter-pill:hover .filter-pill-x {
    opacity: 1;
}

/* Reset filters button */
.exercise-reset-btn {
    padding: 0.25rem 0.65rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.exercise-reset-btn:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

/* Active select state */
.exercise-select--active {
    border-color: var(--accent);
    color: var(--text);
}

/* Difficulty badges */
.exercise-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.difficulty-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
}

.difficulty-beginner {
    color: #00CC6A;
    background: rgba(0, 204, 106, 0.12);
}

.difficulty-gemiddeld {
    color: #FFB800;
    background: rgba(255, 184, 0, 0.12);
}

.difficulty-gevorderd {
    color: var(--accent);
    background: var(--accent-glow);
}

.difficulty-elite {
    color: #FF3333;
    background: rgba(255, 51, 51, 0.12);
}

/* ====== EXERCISE DETAIL HERO ====== */
.exercise-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.exercise-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.exercise-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exercise-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6,6,6,.3) 0%, rgba(6,6,6,.1) 30%, rgba(6,6,6,.85) 65%, var(--bg) 100%),
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,77,0,.06) 0%, transparent 70%);
    pointer-events: none;
}

.exercise-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Fallback when no image */
.exercise-hero--no-img {
    min-height: auto;
    padding-bottom: 3rem;
}

.exercise-hero--no-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,77,0,.06) 0%, transparent 70%);
    pointer-events: none;
}

.exercise-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    width: 100%;
}

.exercise-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.1s forwards;
}

.exercise-hero-breadcrumbs a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color 0.2s;
}

.exercise-hero-breadcrumbs a:hover {
    color: var(--accent);
}

.exercise-hero-breadcrumbs span {
    color: rgba(255,255,255,.7);
}

.exercise-hero-breadcrumbs svg {
    opacity: 0.4;
}

.exercise-hero-category {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.15s forwards;
}

.exercise-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
}

.exercise-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.35s forwards;
}

.exercise-hero-actions .btn {
    font-size: 0.82rem;
    padding: 0.7rem 1.5rem;
}

/* ====== EXERCISE QUICK FACTS ====== */
.exercise-facts {
    border-bottom: 1px solid var(--border);
}

.exercise-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.exercise-fact {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--border);
}

.exercise-fact:last-child {
    border-right: none;
}

.exercise-fact-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid var(--accent-glow-border);
    border-radius: 8px;
    color: var(--accent);
}

.exercise-fact-icon svg {
    width: 18px;
    height: 18px;
}

.exercise-fact-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.exercise-fact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.exercise-fact-value.diff-beginner { color: #00CC6A; }
.exercise-fact-value.diff-gemiddeld { color: #FFB800; }
.exercise-fact-value.diff-gevorderd { color: var(--accent); }
.exercise-fact-value.diff-elite { color: #FF3333; }

/* ====== EXERCISE TWO-COLUMN LAYOUT ====== */
.exercise-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 3rem 0 4rem;
}

.exercise-sidebar {
    position: relative;
}

.exercise-sidebar-inner {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ====== EXERCISE DESCRIPTION ====== */
.exercise-description h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.exercise-description p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

/* ====== EXERCISE TIMELINE STEPS ====== */
.exercise-steps-section {
    margin-top: 2.5rem;
}

.exercise-steps-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.exercise-timeline {
    list-style: none;
    position: relative;
    padding-left: 2.5rem;
}

.exercise-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--border-light) 100%);
    border-radius: 1px;
}

.exercise-timeline li {
    position: relative;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.exercise-timeline li:hover {
    border-color: var(--accent-glow-border);
    transform: translateX(4px);
}

.exercise-timeline li::before {
    content: attr(data-step);
    position: absolute;
    left: -2.5rem;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    z-index: 1;
}

.exercise-timeline .step-instruction {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ====== EXERCISE VIDEO ====== */
.exercise-video-section {
    margin-top: 2.5rem;
}

.exercise-video-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text);
}

.exercise-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.exercise-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ====== EXERCISE TIPS ====== */
.exercise-tips-section {
    margin-top: 2.5rem;
}

.exercise-tips-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.exercise-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.exercise-tip-card {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.exercise-tip-card:hover {
    border-color: var(--border-light);
}

.exercise-tip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.exercise-tip-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.exercise-tip-icon.do {
    background: rgba(0, 204, 106, 0.12);
    color: #00CC6A;
    border: 1px solid rgba(0, 204, 106, 0.2);
}

.exercise-tip-icon.dont {
    background: rgba(255, 51, 51, 0.12);
    color: #FF3333;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.exercise-tip-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.exercise-tip-label.do { color: #00CC6A; }
.exercise-tip-label.dont { color: #FF3333; }

.exercise-tip-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ====== EXERCISE SIDEBAR CARDS ====== */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.muscle-visual {
    padding: 1.25rem;
    text-align: center;
}

.muscle-diagram {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.muscle-body {
    width: 80px;
    height: 180px;
}

.muscle-body svg {
    width: 100%;
    height: 100%;
}

.muscle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.muscle-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.muscle-tag.primary {
    background: var(--accent-glow-strong);
    border: 1px solid var(--accent-glow-border);
    color: var(--accent);
}

.muscle-tag.secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    color: var(--text-dim);
}

.quick-info-list {
    padding: 0.25rem 0;
}

.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.quick-info-item:last-child {
    border-bottom: none;
}

.quick-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.quick-info-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.sidebar-cta {
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.sidebar-cta p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
}

.sidebar-articles-list {
    padding: 0;
}

.sidebar-article-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.sidebar-article-item:last-child {
    border-bottom: none;
}

.sidebar-article-item:hover {
    background: var(--bg-elevated);
}

.sidebar-article-thumb {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.sidebar-article-info span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ====== EXERCISE RELATED SECTION (enhanced) ====== */
.exercise-related-section {
    padding: 3rem 0 4rem;
}

.exercise-related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.exercise-related-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.exercise-related-header a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.exercise-related-header a:hover {
    opacity: 0.8;
}

.exercise-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.exercise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.exercise-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
}

.exercise-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.exercise-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exercise-card:hover .exercise-card-img img {
    transform: scale(1.04);
}

.exercise-card-img .ph-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.exercise-card-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: rgba(6, 6, 6, 0.7);
    backdrop-filter: blur(8px);
}

.exercise-card-badge.diff-beginner { color: #00CC6A; border: 1px solid rgba(0, 204, 106, 0.3); }
.exercise-card-badge.diff-gemiddeld { color: #FFB800; border: 1px solid rgba(255, 184, 0, 0.3); }
.exercise-card-badge.diff-gevorderd { color: var(--accent); border: 1px solid var(--accent-glow-border); }
.exercise-card-badge.diff-elite { color: #FF3333; border: 1px solid rgba(255, 51, 51, 0.3); }

.exercise-card-body {
    padding: 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exercise-card-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.exercise-card-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.exercise-card-meta-row {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.exercise-card-meta-row span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.exercise-card-meta-row svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

/* ====== EXERCISE CTA BANNER ====== */
.exercise-cta-banner {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.08) 0%, transparent 60%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.exercise-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.exercise-cta-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.exercise-cta-text p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.exercise-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ====== EXERCISE DETAIL RESPONSIVE ====== */
@media (max-width: 1024px) {
    .exercise-layout {
        grid-template-columns: 1fr;
    }

    .exercise-sidebar-inner {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .exercise-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exercise-fact:nth-child(2) {
        border-right: none;
    }

    .exercise-fact:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .exercise-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exercise-tips-grid {
        grid-template-columns: 1fr;
    }

    .exercise-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .exercise-hero {
        min-height: 45vh;
    }

    .exercise-hero--no-img {
        min-height: auto;
    }

    .exercise-hero-title {
        font-size: 1.8rem;
    }

    .exercise-sidebar-inner {
        grid-template-columns: 1fr;
    }

    .exercise-related-grid {
        grid-template-columns: 1fr;
    }

    .exercise-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .exercise-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====== BREADCRUMBS ====== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.4;
}

.breadcrumbs span:not(.breadcrumb-sep) {
    color: var(--text-dim);
}

/* ====== RELATED EXERCISES ====== */
.related-exercises {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

/* ====== RACE DETAIL HERO ====== */
.race-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.race-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.race-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.race-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6,6,6,.2) 0%, rgba(6,6,6,.1) 25%, rgba(6,6,6,.8) 60%, var(--bg) 100%),
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,77,0,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Noise texture over hero */
.race-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.race-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,77,0,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,77,0,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: raceGridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes raceGridMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.race-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.race-hero-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(255,77,0,.14);
    top: -80px;
    right: -120px;
}

.race-hero-glow--2 {
    width: 350px;
    height: 350px;
    background: rgba(255,77,0,.07);
    bottom: 80px;
    left: -60px;
}

.race-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    max-width: 860px;
}

/* Hero breadcrumb — high contrast on dark bg */
.race-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.1s forwards;
}

.race-hero-breadcrumbs a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color 0.2s;
}

.race-hero-breadcrumbs a:hover {
    color: var(--accent);
}

.race-hero-breadcrumbs span {
    color: rgba(255,255,255,.7);
}

.race-hero-breadcrumbs svg {
    opacity: 0.4;
}

/* Title — two-line like reference design */
.race-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 7rem);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
}

.race-hero-title-outline {
    display: block;
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
}

/* Countdown pill variant */
.race-meta-pill--countdown {
    background: rgba(255,77,0,.1);
    border-color: rgba(255,77,0,.3);
    color: var(--accent);
}

.race-meta-pill--countdown svg {
    color: var(--accent);
}

.race-meta-pill--countdown strong {
    font-weight: 800;
    color: var(--accent);
}

.race-meta-pill--today {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,0,0); }
    50% { box-shadow: 0 0 12px 2px rgba(255,77,0,.2); }
}

.race-meta-pill--past {
    color: var(--text-muted);
}

.race-meta-pill--past svg {
    color: var(--text-muted);
}

.race-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.4s forwards;
}

.race-meta-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17,17,17,.8);
    border: 1px solid var(--border-light);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: .88rem;
    color: var(--text-dim);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.race-meta-pill svg {
    color: var(--accent);
    flex-shrink: 0;
}

.race-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.5s forwards;
}

/* ====== RACE QUICK FACTS ====== */
.race-facts {
    border-bottom: 1px solid var(--border);
}

.race-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.race-fact {
    background: var(--bg-card);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s;
}

.race-fact:hover {
    background: var(--bg-elevated);
}

.race-fact-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.race-fact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ====== RACE DETAIL CONTENT ====== */
.race-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.race-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.race-register-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.race-map-card {
    margin-top: 1rem;
    padding: 0;
    overflow: hidden;
}

.race-map-card iframe {
    border: 0;
    display: block;
}

.race-info-card h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.race-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.88rem;
}

.race-dl dt {
    color: var(--text-dim);
}

.race-dl dd {
    color: var(--text);
}

.cal-item .cal-register {
    font-size: 0.72rem;
    color: var(--accent);
    text-decoration: none;
    margin-top: 0.25rem;
    display: inline-block;
}

.cal-item .cal-register:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .race-hero {
        min-height: 65vh;
    }

    .race-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .race-hero-title-outline {
        -webkit-text-stroke-width: 1.5px;
    }

    .race-hero-content {
        padding-bottom: 3rem;
    }

    .race-meta-bar {
        gap: 8px;
    }

    .race-meta-pill {
        padding: 8px 12px;
        font-size: .82rem;
    }

    .race-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .race-detail-grid {
        grid-template-columns: 1fr;
    }

    .race-sidebar {
        order: -1;
    }

    .exercise-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .exercise-dropdowns {
        flex-wrap: wrap;
    }

    .exercise-select {
        flex: 1;
        min-width: 0;
    }
}

/* ====== NEWSLETTER ====== */
.newsletter-section {
    padding: 4rem 0;
}

.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-card p {
    color: var(--text-dim);
    margin-top: 0.75rem;
    line-height: 1.7;
}

.newsletter-form--hero {
    margin-top: 1.75rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-dim);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 77, 0, 0.25);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.78rem;
}

.newsletter-feedback {
    font-size: 0.85rem;
    margin-top: 0.75rem;
    min-height: 1.25rem;
}

.newsletter-feedback.success {
    color: var(--green);
}

.newsletter-feedback.error {
    color: #FF4444;
}

.newsletter-form button[type="submit"] {
    position: relative;
}

.newsletter-form.loading button {
    pointer-events: none;
    opacity: 0.8;
}

.newsletter-form.loading button .btn-text {
    visibility: hidden;
}

.newsletter-form.loading button .btn-spinner {
    display: block;
}

.btn-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hide footer newsletter on homepage (already has dedicated newsletter section) */
.page-home .footer-newsletter {
    display: none;
}

/* Footer newsletter */
.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-newsletter-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
}

.newsletter-form--footer {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 380px;
}

.newsletter-form--footer input[type="email"] {
    flex: 1;
    min-width: 0;
}

.footer-newsletter .newsletter-feedback {
    width: 100%;
    margin-top: 0;
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 2rem 1.5rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form--footer {
        max-width: none;
    }
}

/* ====== LEAD MAGNET NEWSLETTER ====== */
.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lead-magnet-benefits li {
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.lead-magnet-benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.newsletter-privacy {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ====== LEAD MAGNET DOWNLOAD (WELKOM) ====== */
.lead-magnet-download {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
}

.lead-magnet-download-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.lead-magnet-download-text {
    flex: 1;
}

.lead-magnet-download-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin: 0;
}

.lead-magnet-download-text p {
    color: var(--text-dim);
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
}

.lead-magnet-download .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lead-magnet-download {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* ====== CHECKLIST PAGE ====== */
.checklist-page {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-block {
    margin-bottom: 3rem;
}

.checklist-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.checklist-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    color: var(--accent);
    margin: 1.25rem 0 0.5rem;
}

.checklist-intro {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.checklist-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .checklist-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

ul.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.checklist li {
    padding: 0.45rem 0 0.45rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
}

ul.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-light);
    border-radius: 3px;
}

/* Timeline */
.checklist-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.timeline-time {
    flex-shrink: 0;
    width: 130px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Stations grid */
.stations-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.station-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

.station-nr {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
}

.station-info h4 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
}

.station-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0.25rem 0;
    line-height: 1.4;
}

.station-target {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.35rem;
}

.target-blank {
    font-family: monospace;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed var(--border-light);
}

/* Run splits */
.run-splits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.run-split-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.run-split-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.run-split-total {
    border-color: var(--accent);
}

.run-split-total .run-split-label {
    color: var(--accent);
}

@media (max-width: 600px) {
    .run-splits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .timeline-time {
        width: auto;
    }
}

/* Checklist CTA */
.checklist-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-top: 2rem;
}

.checklist-cta p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.checklist-cta a {
    color: var(--accent);
}

/* Print styles for checklist */
.btn-print-trigger {
    /* Only visible on screen */
}

@media print {
    .site-header, .footer, .btn-print-trigger, .checklist-cta,
    .section-divider, .page-header .section-label {
        display: none !important;
    }

    .page-header {
        padding: 0.5rem 0;
    }

    body {
        background: #fff;
        color: #111;
    }

    .checklist-block h2 {
        color: #111;
        border-bottom-color: #333;
    }

    .station-card, .run-split-item, .lead-magnet-download {
        border-color: #ccc;
        background: #fff;
    }

    .station-nr {
        background: #333;
    }

    ul.checklist li::before {
        border-color: #999;
    }

    .timeline-time, .checklist-block h3, .station-info h4 {
        color: #333;
    }

    .checklist-page {
        max-width: 100%;
    }
}

/* ====== WELCOME PAGE ====== */
.welcome-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.welcome-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.welcome-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.welcome-link-icon {
    font-size: 1.5rem;
}

.welcome-link-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
}

.welcome-link-text small {
    color: var(--text-dim);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .welcome-links {
        grid-template-columns: 1fr;
    }
}

/* ====== ERROR / 404 PAGE ====== */
.error-cta {
    text-align: center;
    padding: 2rem 0;
}

.error-cta p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.error-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== OVER (PROFILE) PAGE ====== */
.over-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1rem;
}

.over-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.15);
}

.over-avatar span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

.over-bio h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.over-bio p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.over-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.over-credential {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--accent-glow-border);
    border-radius: 100px;
    padding: 0.4rem 1rem;
}

.over-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.25s;
}

.over-social:hover {
    color: var(--accent);
}

.over-social svg {
    opacity: 0.7;
    transition: opacity 0.25s;
}

.over-social:hover svg {
    opacity: 1;
}

/* ====== JOURNEY TIMELINE ====== */
.journey-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin-top: 2.5rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.journey-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-marker {
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    z-index: 1;
}

.journey-marker--upcoming {
    background: var(--accent);
    border-color: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(255, 77, 0, 0.4);
}

.journey-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.journey-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.journey-content p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 600px;
}

.journey-item--upcoming .journey-content h3 {
    color: var(--accent);
}

/* ====== TRUST GRID ====== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.3s;
}

.trust-card:hover {
    border-color: var(--accent-glow-border);
}

.trust-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====== OVER PAGE RESPONSIVE ====== */
@media (max-width: 768px) {
    .over-profile {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .over-credentials {
        justify-content: center;
    }

    .over-social {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .over-avatar {
        width: 96px;
        height: 96px;
    }

    .over-avatar span {
        font-size: 2.5rem;
    }

    .journey-timeline {
        padding-left: 2rem;
    }

    .journey-marker {
        left: -2rem;
        width: 12px;
        height: 12px;
    }

    .journey-timeline::before {
        left: 5px;
    }
}

/* ====== CONTENT CLUSTER WIDGET ====== */
.content-cluster__heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.content-cluster__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cluster-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.cluster-link:hover {
    border-color: var(--accent-glow-border);
    background: var(--bg-hover);
    transform: translateX(4px);
}

.cluster-link__type {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    min-width: 5rem;
    flex-shrink: 0;
}

.cluster-link__title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    flex: 1;
    line-height: 1.3;
}

.cluster-link__arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.cluster-link:hover .cluster-link__arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.cluster-link--article  { border-left: 3px solid var(--accent); }
.cluster-link--schema   { border-left: 3px solid var(--green); }
.cluster-link--race     { border-left: 3px solid #4D9AFF; }
.cluster-link--exercise { border-left: 3px solid #FFB800; }

@media (max-width: 640px) {
    .content-cluster__heading {
        font-size: 1.25rem;
    }

    .cluster-link {
        padding: 0.85rem 1rem;
    }

    .cluster-link__type {
        min-width: 4rem;
        font-size: 0.6rem;
    }

    .cluster-link__title {
        font-size: 0.95rem;
    }
}
