/* ============================================================
         RICHIEST DESIGN SYSTEM
         ============================================================ */
      :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.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);
      }

      /* SLOT HERO */
      .slot-hero {
        padding: var(--s8) 0 var(--s7);
        border-bottom: 1px solid var(--border);
        background: var(--dare-tint);
        position: relative;
        overflow: hidden;
      }
      .slot-hero::before {
        content: "D";
        position: absolute;
        right: -0.05em;
        top: -0.15em;
        font-family: var(--font-display);
        font-size: clamp(14rem, 22vw, 20rem);
        font-weight: 900;
        color: var(--dare);
        opacity: 0.055;
        line-height: 1;
        pointer-events: none;
        user-select: none;
      }
      .slot-hero .inner {
        max-width: var(--content-width);
        margin: 0 auto;
        padding: 0 var(--s5);
        position: relative;
      }
      .slot-number {
        font-family: var(--font-mono);
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: var(--s4);
      }
      .slot-number::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 2px;
        background: var(--dare);
        border-radius: 1px;
        margin-right: var(--s3);
        vertical-align: middle;
      }
      .slot-hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.75rem, 6vw, 4.25rem);
        font-weight: 900;
        line-height: 1.06;
        letter-spacing: -0.04em;
        color: var(--ink);
        max-width: 760px;
        margin-bottom: var(--s5);
      }
      .slot-hero h1 em {
        font-style: italic;
        color: var(--dare);
      }
      .slot-hero .hero-sub {
                font-size: 1.125rem;
                color: var(--ink-light);
                max-width: 560px;
                line-height: 1.65;
                margin-bottom: var(--s6);
            }
      .frame-nav {
        display: flex;
        gap: var(--s2);
        flex-wrap: wrap;
      }
      .frame-nav a {
        padding: var(--s2) var(--s4);
        border-radius: 2px;
        font-family: var(--font-mono);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-decoration: none;
        transition: all 0.15s;
      }
      .frame-nav a.current {
        background: var(--dare);
        color: white;
      }
      .frame-nav a:not(.current) {
        background: rgba(0, 0, 0, 0.06);
        color: var(--ink-muted);
      }
      .frame-nav a:not(.current):hover {
        color: var(--ink);
        background: rgba(0, 0, 0, 0.1);
      }

      .hero-byline {
        display: flex;
        align-items: center;
        gap: var(--s3);
        font-size: 0.8125rem;
        color: var(--ink-muted);
        padding-top: var(--s5);
        margin-top: var(--s5);
        border-top: 1px solid var(--border);
        max-width: 420px;
      }

      .hero-byline img {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
      }

      .hero-byline strong {
        color: var(--ink-light);
        font-weight: 500;
      }

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

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

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

      /* PARETO CARD */
      .pareto-card {
        background: var(--dare-tint);
        border: 1px solid var(--dare);
        border-radius: var(--radius-lg);
        padding: var(--s6);
        margin: var(--s7) 0;
        position: relative;
      }
      .pareto-label {
        position: absolute;
        top: calc(-1 * var(--s3));
        left: var(--s5);
        background: var(--dare);
        color: white;
        font-family: var(--font-mono);
        font-size: 0.625rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: var(--s1) var(--s3);
        border-radius: 2px;
      }
      .pareto-ticker {
        font-family: var(--font-mono);
        font-size: 0.875rem;
        color: var(--dare);
        font-weight: 500;
        margin-bottom: var(--s3);
      }
      .pareto-card h2 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: var(--s4);
        border: none;
        padding: 0;
        color: var(--ink);
      }
      .pareto-card p {
        font-size: 0.9375rem;
        color: var(--ink-light);
        margin-bottom: var(--s4);
      }
      .read-more {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--dare);
        text-decoration: none;
        border-bottom: 1px solid var(--dare);
        padding-bottom: 1px;
      }

      /* RUNNERS GRID */
      .runners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--s4);
        margin: var(--s5) 0;
      }
      .runner-card {
        background: var(--paper-warm);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--s4) var(--s5);
        text-decoration: none;
        color: var(--ink);
        transition:
          border-color 0.15s,
          background 0.15s;
        display: block;
      }
      .runner-card:hover {
        border-color: var(--dare);
        background: var(--dare-tint);
      }
      .runner-ticker {
        font-family: var(--font-mono);
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--dare);
        margin-bottom: var(--s2);
      }
      .runner-name {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: var(--s2);
        color: var(--ink);
      }
      .runner-desc {
        font-size: 0.8125rem;
        color: var(--ink-muted);
        line-height: 1.5;
      }

      /* 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;
      }
      .broker-cta .cta-text {
        flex: 1;
        min-width: 200px;
      }
      .broker-cta .cta-headline {
        font-family: var(--font-display);
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: var(--s1);
        color: var(--paper);
      }
      .broker-cta .cta-sub {
        font-size: 0.8125rem;
        color: rgba(250, 250, 247, 0.6);
      }
      .broker-cta .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);
      }

      /* DATA TABLE */
      .data-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
        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 .highlight-row {
        background: var(--dare-tint);
      }
      .data-table .highlight-row td {
        font-weight: 600;
      }
      .table-note {
        font-size: 0.78125rem;
        color: var(--ink-muted);
        font-style: italic;
        margin-top: calc(-1 * var(--s3));
        margin-bottom: var(--s5);
      }

      /* 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-cta .tool-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
      }
      .tool-cta .tool-text {
        flex: 1;
        min-width: 200px;
      }
      .tool-cta .tool-title {
        font-weight: 600;
        font-size: 0.9375rem;
        margin-bottom: var(--s1);
        color: var(--ink);
      }
      .tool-cta .tool-desc {
        font-size: 0.875rem;
        color: var(--ink-muted);
      }
      .tool-cta .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;
      }

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

      /* 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;
        }
        .runners-grid {
          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;
        }
        .slot-hero h1 {
          font-size: 2.25rem;
        }
      }
    
        /* hamburger */
        .nav-inner { position: relative; }
        .nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
        .nav-toggle-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-right: -6px; }
        .nav-toggle-label span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
        @media (max-width: 768px) {
            .nav-toggle-label { display: flex; margin-left: auto; }
            .nav-links { display: none; position: absolute; top: 52px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.07); flex-direction: column; gap: 0; padding: 4px 0 12px; z-index: 99; }
            .nav-links li a { display: block; padding: 12px 20px; font-size: 0.9375rem; border-bottom: 1px solid var(--border); }
            .nav-links li:last-child a { border-bottom: none; }
            .nav-toggle-input:checked ~ .nav-links { display: flex; }
            .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; transform: scaleX(0); }
            .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        }
                    .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;
            }
