:root {
                --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.78;
                color: var(--ink);
                background: var(--paper);
                -webkit-font-smoothing: antialiased;
            }
            img {
                max-width: 100%;
                display: block;
            }
            a {
                color: var(--ink);
            }

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

            /* HERO */
            .start-hero {
                padding: var(--s8) 0 var(--s7);
                border-bottom: 1px solid var(--border);
            }
            .start-hero-inner {
                max-width: var(--content-width);
                margin: 0 auto;
                padding: 0 var(--s5);
            }
            .hero-kicker {
                font-family: var(--font-mono);
                font-size: 0.6875rem;
                font-weight: 600;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: var(--ink-muted);
                margin-bottom: var(--s4);
                display: flex;
                align-items: center;
                gap: var(--s3);
            }
            .hero-kicker::before {
                content: "";
                display: inline-block;
                width: 20px;
                height: 1px;
                background: var(--ink-muted);
            }
            .start-hero h1 {
                font-family: var(--font-display);
                font-size: clamp(2.75rem, 6vw, 4.25rem);
                font-weight: 900;
                letter-spacing: -0.04em;
                line-height: 1.06;
                color: var(--ink);
                max-width: 760px;
                margin-bottom: var(--s5);
            }
            .start-hero h1 em {
                font-style: italic;
                color: var(--earn);
            }
            .hero-lede {
                font-size: 1.125rem;
                color: var(--ink-light);
                max-width: 560px;
                line-height: 1.65;
                margin-bottom: var(--s5);
            }
            .hero-actions {
                display: flex;
                gap: var(--s3);
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: var(--s5);
            }
            .btn-primary {
                display: inline-block;
                background: var(--ink);
                color: var(--paper);
                padding: 0.875rem 2rem;
                border-radius: var(--radius);
                font-size: 1rem;
                font-weight: 700;
                text-decoration: none;
                transition: opacity 0.15s;
            }
            .btn-primary:hover {
                opacity: 0.88;
                color: var(--paper);
            }
            .btn-ghost {
                display: inline-block;
                background: transparent;
                color: var(--ink-muted);
                padding: 0.625rem 1.25rem;
                border-radius: var(--radius);
                border: 1px solid var(--border-mid);
                font-size: 0.875rem;
                font-weight: 500;
                text-decoration: none;
                transition: border-color 0.15s, color 0.15s;
            }
            .btn-ghost:hover {
                color: var(--ink);
                border-color: var(--ink);
            }
            .hero-byline {
                display: flex;
                align-items: center;
                gap: var(--s3);
                font-size: 0.8125rem;
                color: var(--ink-muted);
                padding-top: var(--s5);
                border-top: 1px solid var(--border);
            }
            .hero-byline img {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                object-fit: cover;
            }
            .hero-byline strong {
                color: var(--ink-light);
                font-weight: 500;
            }

            /* PROSE */
            .prose {
                margin: var(--s7) 0;
            }
            .prose h2 {
                font-family: var(--font-display);
                font-size: 1.75rem;
                font-weight: 700;
                letter-spacing: -0.03em;
                line-height: 1.2;
                color: var(--ink);
                margin-bottom: var(--s5);
                padding-bottom: var(--s3);
                border-bottom: 1px solid var(--border);
                scroll-margin-top: 100px;
            }
            .prose 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);
            }
            .prose p {
                margin-bottom: var(--s4);
                color: var(--ink-light);
            }
            .prose p:last-child {
                margin-bottom: 0;
            }
            .prose strong {
                color: var(--ink);
                font-weight: 600;
            }
            .prose a {
                color: var(--ink);
                border-bottom: 1px solid var(--border-mid);
                text-decoration: none;
                padding-bottom: 1px;
            }
            .prose a:hover {
                border-bottom-color: var(--ink);
            }

            /* PROBLEM BLOCK */
            .problem-block {
                background: var(--paper-mid);
                border-left: 3px solid var(--border-mid);
                border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
                padding: var(--s5) var(--s6);
                margin: var(--s5) 0;
            }
            .problem-block p {
                color: var(--ink-light);
                font-size: 0.9375rem;
                margin-bottom: var(--s3);
            }
            .problem-block p:last-child {
                margin-bottom: 0;
            }

            /* THE FIVE JOBS — inline cards */
            .five-jobs {
                display: flex;
                flex-direction: column;
                gap: var(--s3);
                margin: var(--s5) 0;
            }
            .job-card {
                display: grid;
                grid-template-columns: 3px 44px 1fr auto;
                align-items: center;
                gap: 0 var(--s4);
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s4) var(--s5) var(--s4) 0;
                text-decoration: none;
                color: var(--ink);
                transition:
                    border-color 0.15s,
                    background 0.15s;
                overflow: hidden;
            }
            .job-card:hover {
                border-color: var(--border-mid);
                background: var(--paper-mid);
            }
            .job-color-bar {
                width: 3px;
                height: 100%;
                min-height: 52px;
                border-radius: 0;
            }
            .job-num {
                font-family: var(--font-mono);
                font-size: 0.625rem;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-align: center;
                color: var(--ink-muted);
            }
            .job-body {
            }
            .job-slot {
                font-family: var(--font-display);
                font-size: 1.0625rem;
                font-weight: 700;
                letter-spacing: -0.01em;
                color: var(--ink);
                margin-bottom: 1px;
            }
            .job-desc {
                font-size: 0.8125rem;
                color: var(--ink-muted);
                line-height: 1.4;
            }
            .job-pick {
                font-family: var(--font-mono);
                font-size: 0.75rem;
                font-weight: 500;
                padding: var(--s1) var(--s3);
                border-radius: 2px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            /* SLOT DEEP-DIVE CARDS */
            .slot-section {
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                overflow: hidden;
                margin: var(--s6) 0;
            }
            .slot-section-header {
                padding: var(--s4) var(--s5);
                display: flex;
                align-items: center;
                gap: var(--s4);
            }
            .slot-section-badge {
                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;
                flex-shrink: 0;
            }
            .slot-section-name {
                font-family: var(--font-display);
                font-size: 1.25rem;
                font-weight: 700;
                letter-spacing: -0.02em;
                color: var(--ink);
            }
            .slot-section-job {
                font-size: 0.875rem;
                color: var(--ink-muted);
                margin-left: auto;
            }
            .slot-section-body {
                padding: var(--s5);
                border-top: 1px solid var(--border);
                background: var(--paper);
            }
            .slot-section-body p {
                font-size: 0.9375rem;
                color: var(--ink-light);
                margin-bottom: var(--s3);
            }
            .slot-section-body p:last-of-type {
                margin-bottom: var(--s4);
            }
            .slot-pick-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: var(--s3) var(--s4);
                background: var(--paper-warm);
                border: 1px solid var(--border);
                border-radius: var(--radius);
                flex-wrap: wrap;
                gap: var(--s3);
            }
            .slot-pick-label {
                font-family: var(--font-mono);
                font-size: 0.625rem;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: var(--ink-muted);
            }
            .slot-pick-fund {
                font-weight: 600;
                font-size: 0.875rem;
                color: var(--ink);
            }
            .slot-pick-link {
                font-size: 0.8125rem;
                font-weight: 600;
                text-decoration: none;
                padding-bottom: 1px;
                border-bottom: 1px solid;
            }

            /* CONFIGURATION SECTION */
            .config-grid {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: var(--s4);
                margin: var(--s5) 0;
            }
            .config-card {
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s4) var(--s5);
                background: var(--paper-warm);
            }
            .config-name {
                font-family: var(--font-display);
                font-size: 1rem;
                font-weight: 700;
                margin-bottom: var(--s2);
                color: var(--ink);
            }
            .config-slots {
                display: flex;
                flex-wrap: wrap;
                gap: var(--s1);
                margin-bottom: var(--s3);
            }
            .config-slot-tag {
                font-family: var(--font-mono);
                font-size: 0.625rem;
                font-weight: 500;
                padding: 1px var(--s2);
                border-radius: 2px;
                letter-spacing: 0.04em;
            }
            .config-desc {
                font-size: 0.8125rem;
                color: var(--ink-muted);
                line-height: 1.5;
            }

            /* OBJECTIONS */
            .objection {
                border-bottom: 1px solid var(--border);
                padding: var(--s5) 0;
            }
            .objection:first-child {
                border-top: 1px solid var(--border);
            }
            .objection-q {
                font-weight: 600;
                font-size: 0.9375rem;
                color: var(--ink);
                margin-bottom: var(--s3);
                display: flex;
                align-items: flex-start;
                gap: var(--s3);
            }
            .objection-q::before {
                content: "?";
                font-family: var(--font-mono);
                font-size: 0.75rem;
                font-weight: 500;
                background: var(--paper-mid);
                color: var(--ink-muted);
                width: 22px;
                height: 22px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                margin-top: 1px;
            }
            .objection-a {
                font-size: 0.9375rem;
                color: var(--ink-light);
                padding-left: calc(22px + var(--s3));
            }

            /* NEXT STEPS */
            .next-steps {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--s4);
                margin: var(--s5) 0;
            }
            .next-card {
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                padding: var(--s5);
                text-decoration: none;
                color: var(--ink);
                transition:
                    border-color 0.15s,
                    background 0.15s;
                background: var(--paper-warm);
                display: flex;
                flex-direction: column;
                gap: var(--s3);
            }
            .next-card:hover {
                border-color: var(--border-mid);
                background: var(--paper-mid);
            }
            .next-card-icon {
                font-size: 1.5rem;
            }
            .next-card-title {
                font-weight: 600;
                font-size: 0.9375rem;
                color: var(--ink);
            }
            .next-card-desc {
                font-size: 0.8125rem;
                color: var(--ink-muted);
                line-height: 1.5;
            }
            .next-card-action {
                margin-top: auto;
                font-size: 0.8125rem;
                font-weight: 600;
                color: var(--ink);
                border-bottom: 1px solid var(--border);
                padding-bottom: 1px;
                display: inline-block;
            }

            /* VERDICT */
            .verdict {
                border-left: 3px solid var(--ink);
                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.0625rem;
                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;
            }

            /* 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;
            }

            /* 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: 680px) {
                .config-grid {
                    grid-template-columns: 1fr;
                }
                .next-steps {
                    grid-template-columns: 1fr;
                }
                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                }
            }
            @media (max-width: 500px) {
                .nav-links {
                    display: none;
                }
                .job-card {
                    grid-template-columns: 3px 1fr auto;
                    gap: 0 var(--s3);
                }
                .job-num {
                    display: none;
                }
                .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;
            }
