/* ============================================================
   RICHIEST DESIGN SYSTEM
   ============================================================ */
            :root {
                --slot-color: var(--earn);
                --slot-tint: var(--earn-tint);
                --ink: #0f0f0f;
                --ink-light: #3a3a3a;
                --ink-muted: #6b6b6b;
                --paper: #fafaf7;
                --paper-warm: #f4f2ec;
                --paper-mid: #ede9e0;
                --border: #ddd9ce;
                --border-mid: #c8c3b5;
                --park: #2d6a4f;
                --earn: #b5541a;
                --build: #1a3a6b;
                --roam: #5c3d8f;
                --dare: #8b1a1a;
                --park-tint: #eef5f1;
                --earn-tint: #fdf0e8;
                --build-tint: #edf1f8;
                --roam-tint: #f2eefa;
                --dare-tint: #f8eded;
                --font-display: "Playfair Display", Georgia, serif;
                --font-body: "DM Sans", system-ui, sans-serif;
                --font-mono: "DM Mono", "Courier New", monospace;
                --s1: 0.25rem;
                --s2: 0.5rem;
                --s3: 0.75rem;
                --s4: 1rem;
                --s5: 1.5rem;
                --s6: 2rem;
                --s7: 3rem;
                --s8: 4rem;
                --s9: 6rem;
                --content-width: 740px;
                --wide-width: 960px;
                --radius: 4px;
                --radius-lg: 8px;
            }
            *,
            *::before,
            *::after {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                font-size: 16px;
                scroll-behavior: smooth;
            }
            body {
                font-family: var(--font-body);
                font-size: 1.0625rem;
                line-height: 1.72;
                color: var(--ink);
                background: var(--paper);
                -webkit-font-smoothing: antialiased;
            }
            img {
                max-width: 100%;
                display: block;
            }
            a {
                color: var(--ink);
            }
            a:hover {
                text-decoration-color: var(--border-mid);
            }

            /* HERO */
            .etf-hero {
                padding: var(--s7) 0 var(--s6);
                border-bottom: 1px solid var(--border);
                background: var(--earn-tint);
                position: relative;
            }
            .etf-hero::before {
                content: "D";
                font-family: var(--font-display);
                font-size: clamp(8rem, 20vw, 16rem);
                font-weight: 900;
                color: rgba(181, 84, 26, 0.06);
                position: absolute;
                top: -0.5em;
                right: var(--s5);
                line-height: 1;
                pointer-events: none;
                user-select: none;
            }
            .hero-inner {
                max-width: var(--content-width);
                margin: 0 auto;
                padding: 0 var(--s5);
            }
            .hero-eyebrow {
                display: flex;
                align-items: center;
                gap: var(--s3);
                margin-bottom: var(--s4);
            }
            .slot-badge {
                display: inline-flex;
                align-items: center;
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                font-weight: 500;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                padding: var(--s1) var(--s3);
                border-radius: 2px;
                border: 1px solid currentColor;
            }
            .slot-badge.earn {
                color: var(--earn);
                background: var(--earn-tint);
            }
            .hero-ticker {
                font-family: var(--font-mono);
                font-size: 0.9rem;
                color: var(--ink-muted);
                font-weight: 500;
            }
            .etf-hero h1 {
                font-family: var(--font-display);
                font-size: clamp(1.875rem, 4.5vw, 2.75rem);
                font-weight: 900;
                line-height: 1.12;
                letter-spacing: -0.03em;
                margin-bottom: var(--s3);
                color: var(--ink);
            }
            .hero-thesis {
                font-size: 1.0625rem;
                font-weight: 500;
                line-height: 1.55;
                color: var(--ink-light);
                max-width: 580px;
                margin-bottom: var(--s5);
                border-left: 3px solid var(--earn);
                padding-left: var(--s4);
            }
            .hero-meta {
                display: flex;
                align-items: center;
                gap: var(--s5);
                font-size: 0.8125rem;
                color: var(--ink-muted);
                flex-wrap: wrap;
            }
            .author-block {
                display: flex;
                align-items: center;
                gap: var(--s3);
            }
            .author-block img {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                object-fit: cover;
            }
            .author-name {
                font-weight: 500;
                color: var(--ink-light);
            }

            /* PAGE LAYOUT */
            .page-body {
                max-width: var(--content-width);
                margin: 0 auto;
                padding: 0 var(--s5) var(--s9);
            }

            /* TOC */
            .toc {
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s5);
                margin: var(--s6) 0;
            }
            .toc-title {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s3);
            }
            .toc ol {
                list-style: none;
                counter-reset: toc;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--s1) var(--s6);
            }
            .toc li {
                counter-increment: toc;
            }
            .toc li a {
                font-size: 0.875rem;
                text-decoration: none;
                color: var(--ink-light);
                display: flex;
                align-items: baseline;
                gap: var(--s2);
            }
            .toc li a::before {
                content: counter(toc, decimal-leading-zero);
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                color: var(--ink-muted);
                flex-shrink: 0;
            }
            .toc li a:hover {
                color: var(--earn);
            }

            /* DISCLAIMER */
            .disclaimer {
                font-size: 0.75rem;
                color: var(--ink-muted);
                font-style: italic;
                padding: var(--s3) var(--s4);
                background: var(--paper-mid);
                border-left: 2px solid var(--border-mid);
                border-radius: 0 var(--radius) var(--radius) 0;
                margin: var(--s5) 0;
            }

            /* RICHIEST'S READ */
            .richiests-read {
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-top: 3px solid var(--earn);
                border-radius: 0 0 var(--radius-lg) var(--radius-lg);
                padding: var(--s6);
                margin: var(--s6) 0;
            }
            .read-label {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s4);
                display: flex;
                align-items: center;
                gap: var(--s3);
            }
            .read-label::after {
                content: "";
                flex: 1;
                height: 1px;
                background: var(--border);
            }
            .read-quick-take {
                font-size: 1.0625rem;
                font-weight: 500;
                line-height: 1.6;
                color: var(--ink);
                padding-bottom: var(--s5);
                border-bottom: 1px solid var(--border);
                margin-bottom: var(--s2);
            }
            .read-item-label {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s2);
            }
            .read-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--s5) var(--s7);
            }
            .read-tradeoff {
                grid-column: 1 / -1;
                background: var(--paper-mid);
                border-radius: var(--radius);
                padding: var(--s4);
                margin-top: var(--s2);
            }
            .read-tradeoff p {
                font-size: 0.9375rem;
                color: var(--ink-light);
            }
            .read-grid p {
                font-size: 0.9rem;
                color: var(--ink-light);
            }

            /* CONTENT */
            .content-section {
                margin: var(--s7) 0;
            }
            .content-section h2 {
                font-family: var(--font-display);
                font-size: 1.625rem;
                font-weight: 700;
                letter-spacing: -0.025em;
                line-height: 1.25;
                color: var(--ink);
                margin-bottom: var(--s5);
                padding-bottom: var(--s3);
                border-bottom: 1px solid var(--border);
            }
            .content-section h3 {
                font-size: 0.8125rem;
                font-weight: 600;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin: var(--s6) 0 var(--s3);
            }
            .content-section p {
                margin-bottom: var(--s4);
                color: var(--ink-light);
            }
            .content-section p:last-child {
                margin-bottom: 0;
            }
            .content-section strong {
                color: var(--ink);
                font-weight: 600;
            }

            /* DATA TABLES */
            .data-table {
                width: 100%;
                border-collapse: collapse;
                margin-bottom: var(--s5);
            }
            .data-table th {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: var(--ink-muted);
                font-weight: 500;
                text-align: left;
                padding: var(--s3) var(--s4);
                border-bottom: 2px solid var(--border);
                background: var(--paper-warm);
            }
            .data-table td {
                padding: var(--s3) var(--s4);
                border-bottom: 1px solid var(--border);
                vertical-align: top;
            }
            .data-table td:first-child {
                color: var(--ink-muted);
                font-size: 0.875rem;
                width: 38%;
            }
            .data-table td:last-child {
                font-weight: 500;
            }
            .data-table tr:last-child td {
                border-bottom: none;
            }
            .data-table.comparison td:first-child {
                font-weight: 600;
                color: var(--ink);
                width: auto;
                font-size: 0.9rem;
            }
            .data-table.comparison td {
                font-weight: 400;
            }
            .highlight-row {
                background: var(--earn-tint);
            }
            .highlight-row td {
                font-weight: 600 !important;
            }
            .table-note {
                font-size: 0.78125rem;
                color: var(--ink-muted);
                font-style: italic;
                margin-top: calc(-1 * var(--s3));
                margin-bottom: var(--s5);
            }
            .table-wrap {
                overflow-x: auto;
                margin-bottom: var(--s5);
            }

            /* VERDICT */
            .verdict {
                border-left: 3px solid var(--earn);
                padding: var(--s3) var(--s5);
                margin: var(--s5) 0;
                font-weight: 500;
                color: var(--ink);
                font-size: 0.9375rem;
            }

            /* BROKER CTA */
            .broker-cta {
                background: var(--ink);
                color: var(--paper);
                border-radius: var(--radius-lg);
                padding: var(--s5) var(--s6);
                margin: var(--s6) 0;
                display: flex;
                align-items: center;
                gap: var(--s6);
                flex-wrap: wrap;
            }
            .cta-text {
                flex: 1;
                min-width: 200px;
            }
            .cta-headline {
                font-family: var(--font-display);
                font-size: 1.125rem;
                font-weight: 700;
                margin-bottom: var(--s1);
                color: var(--paper);
            }
            .cta-sub {
                font-size: 0.8125rem;
                color: rgba(250, 250, 247, 0.6);
            }
            .cta-buttons {
                display: flex;
                gap: var(--s3);
                flex-shrink: 0;
                flex-wrap: wrap;
            }
            .cta-btn {
                display: inline-block;
                padding: var(--s3) var(--s5);
                border-radius: var(--radius);
                font-size: 0.875rem;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.15s;
                white-space: nowrap;
            }
            .cta-btn.primary {
                background: var(--paper);
                color: var(--ink);
            }
            .cta-btn.primary:hover {
                background: var(--paper-mid);
            }
            .cta-btn.secondary {
                background: transparent;
                color: var(--paper);
                border: 1px solid rgba(250, 250, 247, 0.3);
            }
            .cta-btn.secondary:hover {
                border-color: var(--paper);
            }

            /* TOOL CTA */
            .tool-cta {
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s5) var(--s6);
                margin: var(--s6) 0;
                display: flex;
                align-items: center;
                gap: var(--s5);
                flex-wrap: wrap;
            }
            .tool-icon {
                font-size: 1.75rem;
                flex-shrink: 0;
            }
            .tool-text {
                flex: 1;
                min-width: 200px;
            }
            .tool-title {
                font-weight: 600;
                font-size: 0.9375rem;
                margin-bottom: var(--s1);
                color: var(--ink);
            }
            .tool-desc {
                font-size: 0.875rem;
                color: var(--ink-muted);
            }
            .tool-link {
                font-size: 0.875rem;
                font-weight: 600;
                text-decoration: none;
                color: var(--ink);
                border-bottom: 1px solid var(--ink);
                padding-bottom: 1px;
                flex-shrink: 0;
            }

            /* FRAME FIT */
            .frame-fit {
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s5) var(--s6);
                margin: var(--s6) 0;
            }
            .frame-fit-title {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s4);
            }
            .frame-slots {
                display: flex;
                gap: var(--s3);
                flex-wrap: wrap;
                margin-bottom: var(--s4);
            }
            .frame-slot {
                padding: var(--s2) var(--s4);
                border-radius: 2px;
                opacity: 0.28;
                font-family: var(--font-mono);
                font-size: 0.75rem;
                font-weight: 500;
                letter-spacing: 0.04em;
            }
            .frame-slot.active {
                opacity: 1;
            }
            .frame-slot.park {
                background: var(--park-tint);
                color: var(--park);
                border: 1px solid var(--park);
            }
            .frame-slot.earn {
                background: var(--earn-tint);
                color: var(--earn);
                border: 1px solid var(--earn);
            }
            .frame-slot.build {
                background: var(--build-tint);
                color: var(--build);
                border: 1px solid var(--build);
            }
            .frame-slot.roam {
                background: var(--roam-tint);
                color: var(--roam);
                border: 1px solid var(--roam);
            }
            .frame-slot.dare {
                background: var(--dare-tint);
                color: var(--dare);
                border: 1px solid var(--dare);
            }

            /* CHART BLOCK */
            .chart-block {
                margin: var(--s6) 0;
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                overflow: hidden;
            }
            .chart-label {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: var(--ink-muted);
                padding: var(--s3) var(--s4);
                border-bottom: 1px solid var(--border);
                background: var(--paper-warm);
            }

            /* FAQ */
            .faq-section {
                margin: var(--s7) 0;
            }
            .faq-item {
                border-bottom: 1px solid var(--border);
                padding: var(--s4) 0;
            }
            .faq-item:first-of-type {
                border-top: 1px solid var(--border);
            }
            .faq-q {
                font-weight: 600;
                font-size: 0.9375rem;
                color: var(--ink);
                margin-bottom: var(--s2);
            }
            .faq-a {
                font-size: 0.9rem;
                color: var(--ink-light);
                line-height: 1.65;
            }

            /* FOOTER */
            .site-footer {
                margin-top: var(--s9);
                border-top: 1px solid var(--border);
                background: var(--paper-warm);
                padding: var(--s7) 0 var(--s6);
            }
            .footer-inner {
                max-width: var(--wide-width);
                margin: 0 auto;
                padding: 0 var(--s5);
            }
            .footer-grid {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: var(--s6);
                margin-bottom: var(--s7);
            }
            .footer-brand .brand-name {
                font-family: var(--font-display);
                font-size: 1.25rem;
                font-weight: 900;
                margin-bottom: var(--s3);
            }
            .footer-brand .brand-name span {
                color: var(--earn);
            }
            .footer-brand p {
                font-size: 0.875rem;
                color: var(--ink-muted);
                max-width: 220px;
            }
            .footer-col h4 {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s3);
            }
            .footer-col ul {
                list-style: none;
            }
            .footer-col li {
                margin-bottom: var(--s2);
            }
            .footer-col a {
                font-size: 0.875rem;
                color: var(--ink-light);
                text-decoration: none;
            }
            .footer-col a:hover {
                color: var(--ink);
            }
            .footer-bottom {
                border-top: 1px solid var(--border);
                padding-top: var(--s5);
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: var(--s4);
                flex-wrap: wrap;
            }
            .footer-disclaimer {
                font-size: 0.75rem;
                color: var(--ink-muted);
                max-width: 500px;
                line-height: 1.5;
            }
            .footer-links {
                display: flex;
                gap: var(--s4);
                font-size: 0.8125rem;
            }
            .footer-links a {
                color: var(--ink-muted);
                text-decoration: none;
            }
            .footer-links a:hover {
                color: var(--ink);
            }

            @media (max-width: 700px) {
                .nav-links {
                    display: none;
                }
                .read-grid {
                    grid-template-columns: 1fr;
                }
                .toc ol {
                    grid-template-columns: 1fr;
                }
                .broker-cta {
                    flex-direction: column;
                    gap: var(--s4);
                }
                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                }
            }
            @media (max-width: 500px) {
                .footer-grid {
                    grid-template-columns: 1fr;
                }
                .footer-bottom {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }
                    .sr-only {
                position: absolute !important;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }
