:root {
  --ink:        #0f0f0f;
  --ink-light:  #3a3a3a;
  --ink-muted:  #6b6b6b;
  --paper:      #fafaf7;
  --paper-warm: #f4f2ec;
  --paper-mid:  #ede9e0;
  --border:     #ddd9ce;
  --border-mid: #c8c3b5;

  /* Slot accent colors */
  --park:   #2d6a4f;
  --earn:   #b5541a;
  --build:  #1a3a6b;
  --roam:   #5c3d8f;
  --dare:   #8b1a1a;

  /* Slot tints */
  --park-tint:  #eef5f1;
  --earn-tint:  #fdf0e8;
  --build-tint: #edf1f8;
  --roam-tint:  #f2eefa;
  --dare-tint:  #f8eded;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing scale */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4rem;
  --s9: 6rem;

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

/* NAV */
.site-nav {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo span { color: var(--earn); }
.nav-links {
  display: flex;
  gap: var(--s4);
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

/* SLOT BADGE */
.slot-badge.roam { color: var(--roam); background: var(--roam-tint); }

/* SLOT HERO */
.slot-hero {
                padding: var(--s8) 0 var(--s7);
  border-bottom: 1px solid var(--border);
  background: var(--roam-tint);
  position: relative;
  overflow: hidden;
}
.slot-hero::before {
  content: "R";
  position: absolute;
  right: -0.05em;
  top: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 22vw, 20rem);
  font-weight: 900;
  color: var(--roam);
  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);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.slot-number::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--roam);
  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 .slot-accent { color: var(--ink); }
.slot-hero h1 em {
  font-style: italic;
  color: var(--roam);
}
.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 */
.frame-nav {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}
.frame-nav a {
  padding: var(--s2) var(--s4);
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.frame-nav a.current {
  background: var(--roam);
  color: white;
}
.frame-nav a:not(.current) {
  background: var(--paper-mid);
  color: var(--ink-muted);
}
.frame-nav a:not(.current):hover { color: var(--ink); background: var(--border); }
.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);
}

/* 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(--roam-tint);
  border: 1px solid var(--roam);
  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(--roam);
  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-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s3);
}
.pareto-card .pareto-ticker {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--roam);
  font-weight: 500;
  margin-bottom: var(--s3);
}
.pareto-card p { font-size: 0.9375rem; color: var(--ink-light); margin-bottom: var(--s4); }
.pareto-card .read-more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--roam);
  text-decoration: none;
  border-bottom: 1px solid var(--roam);
  padding-bottom: 1px;
}

/* SECTION */
.content-section { margin: var(--s7) 0; }
.content-section p {
  margin-bottom: var(--s4);
  color: var(--ink-light);
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: var(--s5);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}

/* RUNNER-UP 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;
}
.runner-card:hover { border-color: var(--border-mid); background: var(--paper-mid); }
.runner-ticker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: var(--s2);
}
.runner-name { font-weight: 600; font-size: 0.9rem; margin-bottom: var(--s2); }
.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);
}
.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; }
.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;
}
.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);
}
.tool-cta .tool-icon { font-size: 1.75rem; }
.tool-cta .tool-text { flex: 1; min-width: 200px; }
.tool-cta .tool-title { font-weight: 600; font-size: 0.9375rem; margin-bottom: var(--s1); }
.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);
}

/* 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);
  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);
}
.table-note { font-size: 0.78125rem; color: var(--ink-muted); margin-top: -var(--s3); margin-bottom: var(--s5); }

/* 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; margin-bottom: var(--s2); color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: start; gap: var(--s4); }
.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); }
.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); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .nav-links { display: none; }
}

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