:root {
            --bg: #050505;
            --surface: #0a0a0a;
            --surface-2: #111;
            --nav-h: 72px;
            --mobile-cta-h: 58px;
            --gold: #D4AF37;
            --gold-dim: #8a702a;
            --gold-glow: rgba(212, 175, 55, 0.22);
            --bronze: #cd7f32;
            --bronze-glow: rgba(205, 127, 50, 0.25);
            --text: #ffffff;
            --text-dim: #d0d0d0;
            --ui-caption: #d8d8d8;
            --border: #222;
            --border-light: #2a2a2a;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background: var(--bg);
            background-image: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
            color: var(--text);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
        }

.page-header {
            text-align: center;
            padding: 56px 20px 40px;
            position: relative;
        }
        .page-header::after {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-header > * { position: relative; z-index: 1; }

        .founding-pill {
            display: inline-block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid rgba(212, 175, 55, 0.45);
            background: rgba(212, 175, 55, 0.08);
            padding: 8px 18px;
            border-radius: 999px;
            margin-bottom: 20px;
        }

        .page-header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.8rem, 7vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            line-height: 1.05;
            margin-bottom: 12px;
        }

        .hero-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold) 82%, #c9a848 96%, var(--bronze) 100%);
            -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
        }

        .page-lead {
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .champs-banner {
            max-width: 720px;
            margin: 28px auto 0;
            padding: 14px 22px;
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 8px;
            background: rgba(212, 175, 55, 0.06);
            font-size: 0.95rem;
            color: #ddd;
        }
        .champs-banner strong { color: var(--gold); font-weight: 700; }

        .container {
            max-width: 1040px;
            margin: 0 auto;
            padding: 0 20px 80px;
            flex-grow: 1;
            width: 100%;
        }

        .section-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--bronze);
            margin-bottom: 10px;
        }

        .path-section .section-label {
            font-size: 0.82rem;
            letter-spacing: 2px;
            color: var(--gold);
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-intro {
            color: var(--text-dim);
            font-size: 1.05rem;
            max-width: 680px;
            margin-bottom: 32px;
            line-height: 1.65;
        }

        /* Qualification tables */
        .threshold-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }

        .threshold-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .threshold-card-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid var(--border);
            background: rgba(255,255,255,0.02);
        }

        .threshold-card-header h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
        }

        .threshold-card-header p {
            font-size: 0.88rem;
            color: var(--ui-caption);
            margin-top: 4px;
        }

        .threshold-rows { list-style: none; }

        .threshold-row {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 16px;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
            transition: background 0.15s ease;
        }

        .threshold-row:last-child { border-bottom: none; }
        .threshold-row:hover { background: rgba(255,255,255,0.02); }

        .class-info {
            min-width: 0;
        }

        .class-name {
            display: block;
            font-size: 1.05rem;
            font-weight: 600;
            color: #eee;
        }

        .class-weight {
            display: block;
            font-size: 0.84rem;
            color: var(--ui-caption);
            font-weight: 500;
            margin-top: 4px;
            letter-spacing: 0.2px;
        }

        .class-note {
            display: block;
            font-size: 0.82rem;
            color: var(--ui-caption);
            font-weight: 500;
            margin-top: 2px;
        }

        .class-time {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.02em;
            text-align: right;
            white-space: nowrap;
            line-height: 1;
        }

        .wdhc-stat-strip__val,
        .wdhc-stat-strip__val * {
            font-family: 'Oswald', sans-serif !important;
        }

        .threshold-row.highlight {
            background: rgba(212, 175, 55, 0.04);
        }

        .threshold-row.highlight .class-time {
            color: #f0d878;
        }

        .threshold-footnote {
            margin-top: 16px;
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 1.6;
        }

        .threshold-footnote strong { color: #fff; }

        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }

        .step-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 20px;
        }

        .step-num {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 12px;
        }

        .step-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            color: #fff;
        }

        .step-card p {
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 1.55;
        }

        .step-card a {
            color: var(--gold);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .step-card a:hover {
            color: #f0d878;
        }

        .pro-portal-card {
            margin-top: 20px;
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.02);
            font-size: 0.95rem;
            color: var(--text-dim);
        }

        .pro-portal-card a {
            color: var(--gold);
            font-weight: 600;
        }

        .pro-qualifiers-panel {
            margin-bottom: 24px;
        }

        .pro-qualifiers-list {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .pro-qualifier-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--surface);
        }

        .pro-qualifier-name {
            font-weight: 600;
            color: #eee;
        }

        .pro-qualifier-meta {
            font-size: 0.88rem;
            color: var(--ui-caption);
            white-space: nowrap;
        }

        .pro-qualifiers-empty {
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        .pro-faq {
            display: grid;
            gap: 10px;
            margin-top: 8px;
        }

        .pro-faq details {
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--surface);
            padding: 0;
        }

        .pro-faq summary {
            cursor: pointer;
            padding: 14px 18px;
            font-weight: 600;
            color: #eee;
            list-style: none;
        }

        .pro-faq summary::-webkit-details-marker { display: none; }

        .pro-faq details[open] summary {
            border-bottom: 1px solid var(--border);
        }

        .pro-faq p {
            padding: 14px 18px 16px;
            margin: 0;
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 1.55;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            align-items: center;
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--gold);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid rgba(212, 175, 55, 0.55);
            transition: box-shadow 0.2s ease, background 0.2s ease;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.08);
            box-shadow: 0 0 12px var(--gold-glow);
        }

        /* CTA */
        .cta-block {
            text-align: center;
            padding: 48px 32px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.07) 0%, rgba(10,10,10,0.9) 100%);
        }

        .cta-block h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .cta-block p {
            color: var(--text-dim);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
            color: #000;
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid rgba(205, 127, 50, 0.5);
            transition: box-shadow 0.2s ease;
        }
        .btn-primary:hover { box-shadow: 0 0 18px var(--gold-glow); }

        footer {
            margin-top: auto;
            padding: 40px 20px 60px;
            text-align: center;
            border-top: 1px solid var(--border);
            background: #0a0a0a;
        }
        .footer-logo {
            display: block; height: 72px; width: auto; max-width: 280px; margin: 0 auto 20px;
            object-fit: contain; }
        .footer-copy { color: #b0b0b0; font-family: 'Rajdhani', sans-serif; font-size: 0.8rem; letter-spacing: 0.5px; }
        .footer-links { margin-top: 12px; font-size: 0.85rem; }
        .footer-links a { color: #b5b5b5; text-decoration: none; margin: 0 10px; }
        .footer-links a:hover { color: var(--gold); }

        @media (max-width: 860px) {
            .threshold-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 520px) {
            .steps-grid { grid-template-columns: 1fr; }
            .class-time { font-size: 1.15rem; }
        }
