:root {
  --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;

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

  --dare: #8b1a1a;
  --dare-tint: #f8eded;

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

* { margin: 0; padding: 0; box-sizing: border-box; }

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: inherit; text-decoration: none; }
a:hover { text-decoration-color: var(--border-mid); }

/* ETF HERO */
.etf-hero {
  padding: var(--s8) 0 var(--s7);
  border-bottom: 1px solid var(--border);
  background: var(--dare-tint);
}
.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--s5);
}
.etf-hero::before {
  content: "X";
  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;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.slot-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--dare);
  padding: var(--s1) var(--s3);
  border-radius: 2px;
}
.hero-ticker {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--dare);
  font-weight: 500;
}
.etf-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: var(--s4);
}
.hero-thesis {
  font-size: 1.125rem;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--s5);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-size: 0.875rem;
  color: var(--ink-muted);
}

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

/* TOC */
.toc {
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s5);
  margin: var(--s6) 0;
}
.toc-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s3);
}
.toc ol {
  padding-left: var(--s4);
  font-size: 0.9375rem;
}
.toc li { margin-bottom: var(--s1); }
.toc a { color: var(--ink-muted); text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.15s; }
.toc a:hover { color: var(--ink); border-bottom-color: var(--border-mid); }

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

/* RICHIEST'S READ */
.richiests-read {
  background: var(--dare-tint);
  border: 1px solid var(--dare);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  margin: var(--s6) 0;
}
.read-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--dare);
  display: inline-block;
  padding: var(--s1) var(--s3);
  border-radius: 2px;
  margin-bottom: var(--s4);
}
.read-quick-take { font-size: 0.9375rem; color: var(--ink-light); line-height: 1.65; margin-bottom: var(--s5); }
.read-item-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dare);
  margin-bottom: var(--s2);
}
.read-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.read-tradeoff { grid-column: 1 / -1; }

/* DATA TABLE */
.data-table { width: 100%; border-collapse: collapse; margin-bottom: var(--s4); font-size: 0.9375rem; }
.data-table td { padding: var(--s2) var(--s3); border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { color: var(--ink-muted); font-weight: 500; width: 40%; }
.data-table th { text-align: left; padding: var(--s2) var(--s3); border-bottom: 2px solid var(--border); font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }
.data-table td:first-child { font-weight: 600; color: var(--ink-light); }
.highlight-row td { background: var(--dare-tint); font-weight: 600; }
.table-note { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: var(--s4); }

/* VERDICT */
.verdict {
  background: var(--paper-warm);
  border-left: 3px solid var(--dare);
  padding: var(--s3) var(--s5);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--s4);
}

/* CHART BLOCK */
.chart-block { margin: var(--s7) 0; }
.chart-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s3);
}

/* COMPARISON TABLE */
.comparison-summary { margin: var(--s5) 0; }

/* WHO IT'S FOR */
.who-for-list { list-style: none; padding: 0; }
.who-for-list li {
  padding: var(--s3) 0 var(--s3) var(--s4);
  border-left: 2px solid var(--dare);
  margin-bottom: var(--s4);
}

/* FRAME FIT */
.frame-fit {
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  margin: var(--s5) 0;
}
.frame-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s4);
}
.frame-slots { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s4); }
.frame-slot {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: var(--s1) var(--s3);
  border-radius: 2px;
  background: var(--paper-mid);
  color: var(--ink-muted);
}
.frame-slot.dare { background: var(--dare); color: white; }

/* 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;
}
.cta-btn.primary { background: white; color: var(--ink); }
.cta-btn.primary:hover { background: var(--paper-warm); }
.cta-btn.secondary { border: 1px solid rgba(250, 250, 247, 0.3); color: var(--paper); }
.cta-btn.secondary:hover { border-color: white; }

/* TOOL CTA */
.tool-cta {
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s5);
  margin: var(--s5) 0;
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.tool-icon { font-size: 1.5rem; }
.tool-text .tool-title { font-weight: 600; color: var(--ink); margin-bottom: var(--s1); }
.tool-text .tool-desc { font-size: 0.875rem; color: var(--ink-muted); }
.tool-link { font-size: 0.875rem; font-weight: 600; color: var(--dare); text-decoration: none; border-bottom: 1px solid var(--dare); padding-bottom: 1px; white-space: nowrap; }

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

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: var(--s8) 0 var(--s6); background: var(--paper-warm); margin-top: var(--s8); }
.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); }
.brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
.brand-name span { color: var(--dare); }
.footer-col h4 { font-size: 0.75rem; 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.9375rem; color: var(--ink-light); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-disclaimer { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: var(--s3); }
.footer-links { display: flex; gap: var(--s4); }
.footer-links a { font-size: 0.875rem; color: var(--ink-muted); text-decoration: none; }

@media (max-width: 640px) {
  .nav-links { gap: var(--s3); font-size: 0.75rem; }
  .read-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .broker-cta { flex-direction: column; align-items: stretch; }
}
            .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;
            }
