:root {
  --ce-blue:       #1e5ae0;
  --ce-blue-dark:  #1848b8;
  --ce-blue-light: #3b72e8;
  --ce-blue-faint: #e8eefd;
  --paper:         #ffffff;
  --paper-soft:    #f5f6fb;
  --ink:           #0c1b3a;
  --ink-body:      #1f2d4a;
  --ink-muted:     #5a6585;
  --ink-faint:     #8a93ac;
  --rule:          #dde1ed;
  --rule-soft:     #e8ebf3;
  --rule-dashed:   #c8cfe0;
  --green:         #1a9e6e;
  --green-faint:   #e6f7f1;
  --sans:  'Inter', -apple-system, sans-serif;
  --mono:  'Inter', -apple-system, sans-serif;
  --content: 1230px;
  --wide:    1230px;
}

.rpe-page *, .rpe-page *::before, .rpe-page *::after { box-sizing: border-box; }
.rpe-page { background: var(--paper); color: var(--ink-body); font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: clip; }
.rpe-page a { color: var(--ce-blue); text-decoration: underline; }
.rpe-page a:hover { text-decoration: none; }

/* BREADCRUMBS */
.rpe-page .crumbs-bar { border-bottom: 1px solid var(--rule-soft); padding: 12px 0; }
.rpe-page .crumbs { max-width: var(--wide); margin: 0 auto; padding: 0 15px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); display: flex; align-items: center; flex-wrap: wrap; }
.rpe-page .crumbs a { color: var(--ink-muted); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.rpe-page .crumbs a:hover { border-bottom-color: var(--ink-muted); }
.rpe-page .crumbs .sep { margin: 0 10px; color: var(--ink-faint); }
.rpe-page .crumbs .current { color: var(--ink); }

/* MASTHEAD */
.rpe-page .masthead { max-width: var(--wide); margin: 0 auto; padding: 64px 15px 48px; }
.rpe-page .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ce-blue); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; font-weight: 500; }
.rpe-page .kicker::before { content: ''; width: 28px; height: 1px; background: var(--ce-blue); }
.rpe-page h1.title { font-weight: 800; font-size: clamp(34px, 5.5vw, 56px); line-height: 120%; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px; }
.rpe-page h1.title em { font-style: italic; font-weight: 500; color: var(--ce-blue); }
.rpe-page .deck { font-size: 19px; max-width: 1000px; line-height: 170%; color: var(--ink-muted); margin-bottom: 32px; font-style: italic; font-weight: 400; }
.rpe-page .byline { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px; padding-top: 20px; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--ink-muted); }
.rpe-page .byline .author { color: var(--ink); font-weight: 500; }
.rpe-page .byline .author-link { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.15s; }
.rpe-page .byline .author-link:hover { color: var(--ce-blue); }
.rpe-page .byline-item { display: inline-flex; align-items: center; gap: 7px; }
.rpe-page .byline-icon { width: 16px; height: 16px; color: var(--ce-blue); flex-shrink: 0; }
.rpe-page .byline-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--ce-blue-faint); color: var(--ce-blue); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }

/* QUICK PICKS */
.rpe-page .quick-picks { background: var(--paper-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 24px 15px; }
.rpe-page .quick-picks-inner { max-width: var(--wide); margin: 0 auto; }
.rpe-page .quick-picks-label { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); margin-bottom: 14px; }
.rpe-page .quick-picks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rpe-page .quick-pick-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; padding: 14px 16px; text-decoration: none; display: block; transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; color: inherit; }
.rpe-page .quick-pick-card:hover { border-color: var(--ce-blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,90,224,0.10); color: inherit; }
.rpe-page .quick-pick-card .qp-label { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--ce-blue); letter-spacing: 0.06em; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.rpe-page .quick-pick-card .qp-label::after { content: '\2192'; font-size: 11px; opacity: 0; transform: translateX(-4px); transition: opacity 0.15s, transform 0.15s; margin-left: auto; }
.rpe-page .quick-pick-card:hover .qp-label::after { opacity: 1; transform: translateX(0); }
.rpe-page .quick-pick-card ol { list-style: none; counter-reset: pick-counter; margin: 0; padding: 0; }
.rpe-page .quick-pick-card ol li { counter-increment: pick-counter; display: flex; align-items: baseline; gap: 8px; font-size: 13px; color: var(--ink-muted); line-height: 1.5; padding: 4px 0; border-bottom: 1px solid var(--rule-soft); }
.rpe-page .quick-pick-card ol li a{
  color: var(--ink-muted);
}
.rpe-page .quick-pick-card ol li a:hover{
  text-decoration: underline;
}
.rpe-page .quick-pick-card ol li:last-child { border-bottom: none; }
.rpe-page .quick-pick-card ol li::before { content: counter(pick-counter, decimal-leading-zero); font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--ce-blue); opacity: 0.7; flex-shrink: 0; width: 18px; }

/* ARTICLE LAYOUT */
.rpe-page .article-layout { max-width: 1390px; margin: 0 auto; padding: 0 15px; display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
@media (min-width: 1200px) { .rpe-page .article-layout { grid-template-columns: 220px 1fr 280px; } .rpe-page .article-main { grid-column: 2 / 3; } }
@media (max-width: 999px) { .rpe-page .article-layout { grid-template-columns: 1fr; max-width: 100%; padding: 0 15px; gap: 0; } }

/* TOC SIDEBAR */
.rpe-page .toc-sidebar { position: sticky; top: 76px; max-height: calc(100vh - 96px); overflow-y: auto; padding-top: 32px; scrollbar-width: thin; scrollbar-color: var(--rule) transparent; }
.rpe-page .toc-sidebar::-webkit-scrollbar { width: 3px; }
.rpe-page .toc-sidebar::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 2px; }
.rpe-page .toc-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); font-weight: 500; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--ce-blue); }
.rpe-page .toc-sidebar-list { list-style: none; padding: 0; margin: 0; }
.rpe-page .toc-sidebar-list li { border-bottom: 1px solid var(--rule-soft); }
.rpe-page .toc-sidebar-list li:last-child { border-bottom: none; }
.rpe-page .toc-sidebar-list a { display: block; padding: 7px 0 7px 10px; font-size: 12px; font-weight: 400; color: var(--ink-muted); line-height: 1.4; border-left: 2px solid transparent; transition: color 0.15s, border-color 0.15s, background 0.15s; text-decoration: none; }
.rpe-page .toc-sidebar-list a:hover { color: var(--ce-blue); border-left-color: var(--ce-blue-faint); }
.rpe-page .toc-sidebar-list a.is-active { color: var(--ce-blue); font-weight: 600; border-left-color: var(--ce-blue); background: var(--ce-blue-faint); border-radius: 0 4px 4px 0; }
.rpe-page .toc-count { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--rule-soft); letter-spacing: 0.04em; }
.rpe-page .toc-count strong { color: var(--ce-blue); }
@media (max-width: 999px) { .rpe-page .toc-sidebar { display: none; } }

/* INTRO */
.rpe-page .intro { padding: 40px 0 32px; }
.rpe-page .intro p { font-size: 19px; line-height: 1.7; color: var(--ink-body); margin-bottom: 20px; }
.rpe-page .intro p:first-child::first-letter { font-weight: 800; font-size: 68px; line-height: 0.85; float: left; margin: 10px 14px 0 -2px; color: var(--ce-blue); }
.rpe-page .intro a { color: var(--ce-blue); border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.rpe-page .intro a:hover { border-bottom-color: var(--ce-blue); }

/* ORNAMENT */
.rpe-page .rule-ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 8px 0; }
.rpe-page .rule-ornament::before, .rpe-page .rule-ornament::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.rpe-page .rule-ornament .mark { color: var(--ce-blue); font-size: 12px; letter-spacing: 0.5em; padding-left: 0.5em; font-weight: 600; }

/* SECTIONS */
.rpe-page .section { padding: 60px 0 16px; scroll-margin-top: 70px; }
.rpe-page .section-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; font-weight: 500; }
.rpe-page h2.section-title {    margin-bottom: 16px; font-weight: 700; font-size: clamp(26px, 3.8vw, 40px); line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 16px; }
.rpe-page h2.section-title em { font-style: italic; font-weight: 500; color: var(--ce-blue); }
.rpe-page .section-lede { font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink-muted); max-width: 764px; margin-bottom: 24px; }
.rpe-page .section-lede a { color: var(--ce-blue);  transition: border-color 0.2s; }

/* PROSE */
.rpe-page .prose p { font-size: 17.5px; line-height: 1.75; color: var(--ink-body); margin: 20px 0; }
.rpe-page .prose p strong { font-weight: 600; color: var(--ink); }
.rpe-page .prose a { color: var(--ce-blue); border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.rpe-page .prose a:hover { border-bottom-color: var(--ce-blue); }
.rpe-page .prose h3 { font-size: clamp(19px, 2.5vw, 26px); font-weight: 700; color: var(--ink); margin: 48px 0 14px; letter-spacing: -0.018em; }
.rpe-page .prose h3 em { font-style: italic; font-weight: 500; color: var(--ce-blue); }

/* ROUTING GUIDE */
.rpe-page .routing-guide { background: var(--paper-soft); border: 1px solid var(--rule); border-radius: 8px; padding: 20px 24px 16px; margin: 24px 0 32px; }
.rpe-page .routing-guide-label { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); margin-bottom: 16px; }
.rpe-page .routing-guide ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.rpe-page .routing-guide li { font-size: 15.5px; color: var(--ink-body); padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--rule-soft); line-height: 1.55; }
.rpe-page .routing-guide li:last-child { border-bottom: none; }
.rpe-page .routing-guide li::before { content: '\2192'; position: absolute; left: 0; top: 9px; font-family: var(--mono); font-size: 11px; color: var(--ce-blue); }
.rpe-page .routing-guide li strong { color: var(--ink); font-weight: 600; }
.rpe-page .routing-guide li a { color: var(--ce-blue); border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.rpe-page .routing-guide li a:hover { border-bottom-color: var(--ce-blue); }

/* TABLE */
.rpe-page .table-wrap { overflow-x: auto; margin: 20px 0 24px; }
.rpe-page .table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.rpe-page .table-wrap thead { background: var(--ink); }
.rpe-page .table-wrap thead th { color: white; font-weight: 600; text-align: left; padding: 12px 16px; font-size: 13px; letter-spacing: 0.02em; }
.rpe-page .table-wrap tbody tr { border-bottom: 1px solid var(--rule-soft); transition: background 0.12s; }
.rpe-page .table-wrap tbody tr:hover { background: var(--paper-soft); }
.rpe-page .table-wrap tbody td { padding: 13px 16px; color: var(--ink-body); vertical-align: top; line-height: 1.55; }
.rpe-page .table-wrap tbody td:first-child { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--ce-blue); white-space: nowrap; }

/* SUBSECTION */
.rpe-page .subsec { padding: 44px 0 8px; scroll-margin-top: 70px; }
#sec-apa{
  padding-top: 0;
}
.rpe-page .subsec h3 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 12px; }
.rpe-page .subsec h3 em { font-style: italic; font-weight: 500; color: var(--ce-blue); }
.rpe-page .subsec-lede { font-size: 16px; color: var(--ink-muted); font-style: italic; line-height: 1.6; margin-bottom: 20px; }

/* RULES LIST */
.rpe-page .rules-list { list-style: none; margin: 0 0 24px; padding: 0; }
.rpe-page .rules-list li { font-size: 15.5px; line-height: 1.6; color: var(--ink-body); padding: 9px 0 9px 28px; position: relative; border-bottom: 1px dashed var(--rule-dashed); }
.rpe-page .rules-list li:last-child { border-bottom: none; }
.rpe-page .rules-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 7px; height: 7px; border-radius: 50%; background: var(--ce-blue); }
.rpe-page .rules-list li strong { color: var(--ink); font-weight: 600; }

/* EXCERPT BLOCK */
.rpe-page .excerpt-block { background: var(--paper-soft); border-left: 3px solid var(--ce-blue); padding: 20px 24px; margin: 20px 0 24px; }
.rpe-page .excerpt-label { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); margin-bottom: 12px; }
.rpe-page .excerpt-text { font-size: 14.5px; line-height: 1.75; color: var(--ink-body); font-style: italic; margin-bottom: 14px; }
.rpe-page .excerpt-text strong { font-style: normal; font-weight: 600; color: var(--ink); }
.rpe-page .excerpt-note { font-size: 13.5px; line-height: 1.65; color: var(--ink-muted); margin: 0; padding-top: 12px; border-top: 1px solid var(--rule); }
.rpe-page .excerpt-note strong { color: var(--ink); font-weight: 600; }

/* PDF CARD */
.rpe-page .pdf-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; text-decoration: none; color: inherit; margin: 16px 0 0; transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s; }
.rpe-page .pdf-card:hover { border-color: var(--ce-blue); box-shadow: 0 4px 16px rgba(30,90,224,0.10); transform: translateY(-1px); color: inherit; }
.rpe-page .pdf-badge { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; background: #fdecea; color: #c0392b; padding: 7px 11px; border-radius: 4px; flex-shrink: 0; }
.rpe-page .pdf-info { flex: 1; min-width: 0; }
.rpe-page .pdf-title { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.rpe-page .pdf-meta { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }
.rpe-page .pdf-arrow { font-size: 18px; color: var(--ce-blue); flex-shrink: 0; transition: transform 0.18s; }
.rpe-page .pdf-card:hover .pdf-arrow { transform: translateY(2px); }

/* SECTION LINKS LIST */
.rpe-page .sec-link-list { list-style: none; margin: 24px 0; padding: 0; }
.rpe-page .sec-link-list li { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--rule-soft); }
.rpe-page .sec-link-list li:last-child { border-bottom: none; }
.rpe-page .sec-link-info .sec-link-title { font-size: 15.5px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; }
.rpe-page .sec-link-info .sec-link-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.5; }
.rpe-page .sec-cta-link { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--ce-blue); white-space: nowrap; border-bottom: 1px solid var(--rule); padding-bottom: 1px; transition: border-color 0.2s; margin-top: 4px; text-decoration: none; }
.rpe-page .sec-cta-link:hover { border-color: var(--ce-blue); }
.rpe-page .sec-cta-link::after { content: '\2192'; }

/* MISTAKE LIST */
.rpe-page .mistake-list { list-style: none; margin: 24px 0; padding: 0; counter-reset: mistake-counter; }
.rpe-page .mistake-list li { counter-increment: mistake-counter; padding: 20px 20px 20px 56px; border-bottom: 1px solid var(--rule-soft); position: relative; font-size: 16px; line-height: 1.65; color: var(--ink-body); }
.rpe-page .mistake-list li:last-child { border-bottom: none; }
.rpe-page .mistake-list li::before { content: counter(mistake-counter, decimal-leading-zero); position: absolute; left: 0; top: 22px; font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--ce-blue); opacity: 0.25; width: 44px; text-align: right; }
.rpe-page .mistake-list li strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }

/* INLINE CTA */
.rpe-page .inline-cta { margin: 36px 0 0; padding: 24px 0 0; border-top: 1px solid var(--rule); }
.rpe-page .inline-cta p { font-size: 17px; line-height: 1.7; color: var(--ink-body); font-style: italic; }
.rpe-page .inline-cta p a { color: var(--ce-blue); font-weight: 500; font-style: normal;  padding-bottom: 1px; transition: color 0.15s, border-color 0.15s; }
.rpe-page .inline-cta p a:hover { color: var(--ce-blue-dark); border-color: var(--ce-blue-dark); }

/* TRUST BRIDGE */
.rpe-page .bridge { margin: 0; padding: 40px 0 24px; border-top: 1px solid var(--rule); }
.rpe-page .bridge p { font-size: 20px; line-height: 1.65; color: var(--ink); font-weight: 400; }
.rpe-page .bridge p a { color: var(--ce-blue); font-weight: 500; border-bottom: 2px solid var(--ce-blue); padding-bottom: 1px; transition: color 0.15s, border-color 0.15s; }
.rpe-page .bridge p a:hover { color: var(--ce-blue-dark); border-color: var(--ce-blue-dark); }

/* CLOSER */
.rpe-page .closer { margin: 24px 0 0; padding: 32px 0 40px; }
.rpe-page .closer-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ce-blue); margin-bottom: 16px; font-weight: 500; }
.rpe-page .closer p { font-size: 20px; line-height: 1.65; color: var(--ink); margin-bottom: 16px; }
.rpe-page .closer p:last-child { margin-bottom: 0; }
.rpe-page .closer p a { color: var(--ce-blue); font-weight: 500; border-bottom: 2px solid var(--ce-blue); padding-bottom: 1px; transition: color 0.15s, border-color 0.15s; }
.rpe-page .closer p a:hover { color: var(--ce-blue-dark); border-color: var(--ce-blue-dark); }

/* FAQ */
.rpe-page .faq-item { border-bottom: 1px solid var(--rule-soft); }
.rpe-page .faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; font-family: var(--sans); }
.rpe-page .faq-q .q-text { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.rpe-page .faq-icon { font-family: var(--mono); font-size: 20px; color: var(--ce-blue); line-height: 1; flex-shrink: 0; margin-top: 1px; transition: transform 0.2s; font-weight: 400; }
.rpe-page .faq-item.open .faq-icon { transform: rotate(45deg); }
.rpe-page .faq-a { font-size: 15.5px; color: var(--ink-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding-bottom 0.2s; padding-bottom: 0; }
.rpe-page .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.rpe-page .faq-a a { color: var(--ce-blue); border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.rpe-page .faq-a a:hover { border-bottom-color: var(--ce-blue); }

/* AUTHOR CARD */
.rpe-page .author-card { position: relative; margin: 48px 0 96px; padding: 32px 36px; border-radius: 18px; background: linear-gradient(135deg, #0c1b3a 0%, #142654 55%, #1a3478 100%); color: #e8eefd; overflow: hidden; isolation: isolate; box-shadow: 0 24px 60px -28px rgba(12,27,58,0.55), 0 1px 0 rgba(255,255,255,0.04) inset; }
.rpe-page .author-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 0%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 0%, transparent 75%); pointer-events: none; z-index: 0; }
.rpe-page .author-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 12% 110%, rgba(59,114,232,0.35), transparent 55%); pointer-events: none; z-index: 0; }
.rpe-page .author-glow { position: absolute; top: -30%; right: -10%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(59,114,232,0.45) 0%, rgba(59,114,232,0) 70%); filter: blur(20px); pointer-events: none; z-index: 0; }
.rpe-page .author-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 96px 1fr; gap: 26px; align-items: start; }
.rpe-page .author-avatar { position: relative; width: 96px; height: 96px; }
.rpe-page .author-ring { position: absolute; inset: -6px; border-radius: 50%; background: conic-gradient(from 220deg, #3b72e8, #7aa3ff, #1e5ae0, #3b72e8); animation: rpe-author-spin 8s linear infinite; opacity: 0.85; }
.rpe-page .author-ring::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: #0c1b3a; }
@keyframes rpe-author-spin { to { transform: rotate(360deg); } }
.rpe-page .author-avatar img { position: relative; z-index: 2; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; display: block; border: 2px solid rgba(255,255,255,0.08); }
.rpe-page .author-initials { display: none; position: relative; z-index: 2; width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, #3b72e8 0%, #1e5ae0 100%); color: #fff; font-size: 32px; font-weight: 700; align-items: center; justify-content: center; letter-spacing: -0.02em; border: 2px solid rgba(255,255,255,0.08); }
.rpe-page .author-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #7aa3ff; margin-bottom: 10px; }
.rpe-page .author-pulse { width: 7px; height: 7px; border-radius: 50%; background: #7aa3ff; box-shadow: 0 0 0 0 rgba(122,163,255,0.6); animation: rpe-author-pulse 1.8s ease-out infinite; }
@keyframes rpe-author-pulse { 0% { box-shadow: 0 0 0 0 rgba(122,163,255,0.55); } 70% { box-shadow: 0 0 0 8px rgba(122,163,255,0); } 100% { box-shadow: 0 0 0 0 rgba(122,163,255,0); } }
.rpe-page .author-name { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: #fff; margin: 0 0 12px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; line-height: 1.2; }
.rpe-page .author-spec { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #7aa3ff; padding: 4px 10px; border: 1px solid rgba(122,163,255,0.35); border-radius: 999px; background: rgba(59,114,232,0.08); }
.rpe-page .author-bio { font-size: 15px; line-height: 1.65; color: #c8d3ee; margin: 0 0 18px; max-width: 640px; }
.rpe-page .author-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.rpe-page .author-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); font-size: 12.5px; font-weight: 500; color: #c8d3ee; }
.rpe-page .author-link-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, #3b72e8, #1e5ae0); color: #fff !important; font-size: 13px; font-weight: 600; letter-spacing: 0.01em; text-decoration: none !important; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 18px -6px rgba(59,114,232,0.55); border: 0; }
.rpe-page .author-link-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(59,114,232,0.75); }
@media (max-width: 640px) { .rpe-page .author-card { padding: 28px 22px; margin-bottom: 64px; } .rpe-page .author-grid { grid-template-columns: 1fr; gap: 20px; } .rpe-page .author-glow { width: 200px; height: 200px; } }

/* KEEP READING */
.rpe-page .keep-reading { max-width: var(--wide); margin: 0 auto; padding: 56px 32px 96px; border-top: 1px solid var(--rule); }
.rpe-page .keep-reading-label { font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 28px; letter-spacing: -0.01em; }
.rpe-page .keep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rpe-page .keep-card { background: #B8DFFF; border-radius: 14px; padding: 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; overflow: hidden; }
.rpe-page .keep-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(30,90,224,0.18); color: inherit; }
.rpe-page .keep-card .keep-meta { font-size: 13px; color: var(--ink-body); margin: 0 0 12px; font-weight: 400; }
.rpe-page .keep-card h4 { font-weight: 700; font-size: 18px; line-height: 1.35; color: var(--ink); margin: 0 0 18px; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rpe-page .keep-card .keep-img { margin-top: auto; border-radius: 10px; overflow: hidden; background: #fff; }
.rpe-page .keep-card .keep-img img { width: 100%; height: 160px; object-fit: contain; object-position: center; display: block; }

/* PATTERN A */
.rpe-page .pa-modal-scrim { position: fixed; inset: 0; background: rgba(12,27,58,0.55); backdrop-filter: blur(2px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.rpe-page .pa-modal-scrim.is-open { display: flex; animation: rpe-scrim-in 0.22s ease-out; }
@keyframes rpe-scrim-in { from { opacity: 0; } to { opacity: 1; } }
.rpe-page .pa-modal { background: var(--paper); border-radius: 14px; max-width: 460px; width: 100%; padding: 36px 32px 32px; position: relative; box-shadow: 0 24px 64px rgba(12,27,58,0.28); animation: rpe-modal-in 0.28s cubic-bezier(0.16,1,0.3,1); }
@keyframes rpe-modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.rpe-page .pa-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none; background: transparent; cursor: pointer; border-radius: 6px; color: var(--ink-muted); font-size: 18px; line-height: 1; transition: background 0.15s, color 0.15s; }
.rpe-page .pa-close:hover { background: var(--paper-soft); color: var(--ink); }
.rpe-page .pa-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ce-blue); font-weight: 500; margin-bottom: 12px; }
.rpe-page .pa-modal h3 { font-size: 23px; font-weight: 700; line-height: 1.2; letter-spacing: -0.018em; color: var(--ink); margin-bottom: 12px; }
.rpe-page .pa-modal h3 em { font-style: italic; font-weight: 500; color: var(--ce-blue); }
.rpe-page .pa-body { font-size: 15px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 22px; }
.rpe-page .pa-form { display: flex; gap: 8px; margin-bottom: 12px; }
.rpe-page .pa-form input[type="email"] { flex: 1; padding: 12px 14px; border: 1px solid var(--rule); border-radius: 7px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--paper); transition: border-color 0.15s, box-shadow 0.15s; min-width: 0; }
.rpe-page .pa-form input[type="email"]:focus { outline: none; border-color: var(--ce-blue); box-shadow: 0 0 0 3px var(--ce-blue-faint); }
.rpe-page .pa-form button { background: var(--ce-blue); color: white; border: none; padding: 12px 20px; border-radius: 7px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.rpe-page .pa-form button:hover { background: var(--ce-blue-dark); }
.rpe-page .pa-fineprint { font-size: 12px; color: var(--ink-faint); line-height: 1.5; }
.rpe-page .pa-success { display: none; text-align: center; padding: 24px 0; color: var(--ce-blue); font-weight: 600; font-size: 16px; }
.rpe-page .pa-success.is-shown { display: block; }
.rpe-page .pa-form.is-hidden, .rpe-page .pa-fineprint.is-hidden { display: none; }

/* PATTERN B RAIL */
.rpe-page .pb-rail { display: none; position: sticky; top: 50%;transform: translateY(-50%); align-self: start; width: 100%; background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; padding: 20px 20px 18px; box-shadow: 0 8px 24px rgba(12,27,58,0.08); opacity: 0; transition: opacity 0.4s; }
.rpe-page .pb-rail.is-visible { opacity: 1; }
.rpe-page .pb-kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); font-weight: 500; margin-bottom: 10px; }
.rpe-page .pb-rail h4 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 8px; }
.rpe-page .pb-rail p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 14px; }
.rpe-page .pb-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--ce-blue); border-bottom: 1px solid var(--ce-blue); padding-bottom: 1px; transition: color 0.15s, border-color 0.15s; }
.rpe-page .pb-link:hover { color: var(--ce-blue-dark); border-color: var(--ce-blue-dark); }
.rpe-page .pb-link::after { content: '\2192'; font-weight: 400; }
@media (min-width: 1200px) { .rpe-page .pb-rail { display: block; } }

/* MOBILE TOC FAB */
.rpe-page .toc-fab { position: fixed; bottom: 24px; left: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--ce-blue); color: white; border: none; cursor: pointer; box-shadow: 0 6px 20px rgba(30,90,224,0.32); z-index: 80; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; padding: 0; }
.rpe-page .toc-fab:hover { background: var(--ce-blue-dark); transform: translateY(-2px); }
.rpe-page .toc-fab-icon { display: block; width: 18px; height: 12px; position: relative; }
.rpe-page .toc-fab-icon::before, .rpe-page .toc-fab-icon::after, .rpe-page .toc-fab-icon span { position: absolute; left: 0; right: 0; height: 2px; background: white; border-radius: 1px; }
.rpe-page .toc-fab-icon::before { content: ''; top: 0; }
.rpe-page .toc-fab-icon span { top: 5px; right: 4px; display: block; }
.rpe-page .toc-fab-icon::after { content: ''; top: 10px; right: 2px; }
.rpe-page .toc-fab.is-open { background: var(--ink); }
.rpe-page .toc-fab.is-open .toc-fab-icon::before { top: 5px; transform: rotate(45deg); right: 0; }
.rpe-page .toc-fab.is-open .toc-fab-icon::after { top: 5px; transform: rotate(-45deg); right: 0; }
.rpe-page .toc-fab.is-open .toc-fab-icon span { opacity: 0; }
.rpe-page .toc-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(12,27,58,0.3); backdrop-filter: blur(1px); opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.rpe-page .toc-backdrop.is-open { opacity: 1; pointer-events: auto; }
.rpe-page .toc-panel { position: fixed; bottom: 88px; left: 24px; width: 300px; max-height: 70vh; overflow-y: auto; background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; box-shadow: 0 12px 40px rgba(12,27,58,0.14); z-index: 80; opacity: 0; pointer-events: none; transform: translateY(8px) scale(0.98); transition: opacity 0.22s, transform 0.22s; }
.rpe-page .toc-panel.is-open { opacity: 1; pointer-events: auto; transform: none; }
.rpe-page .toc-panel-head { padding: 18px 20px 14px; border-bottom: 1px solid var(--rule-soft); position: sticky; top: 0; background: var(--paper); }
.rpe-page .toc-panel-kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ce-blue); font-weight: 500; margin-bottom: 4px; }
.rpe-page .toc-panel-title { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.rpe-page .toc-panel-list { list-style: none; padding: 8px 0; counter-reset: toc-counter; }
.rpe-page .toc-panel-list li { counter-increment: toc-counter; }
.rpe-page .toc-panel-list a { display: flex; align-items: center; gap: 12px; padding: 9px 20px; font-size: 13.5px; color: var(--ink-muted); transition: color 0.15s, background 0.15s; }
.rpe-page .toc-panel-list a::before { content: counter(toc-counter, decimal-leading-zero); font-family: var(--mono); font-size: 10px; color: var(--ink-faint); font-weight: 500; flex-shrink: 0; width: 22px; }
.rpe-page .toc-panel-list a:hover { color: var(--ce-blue); background: var(--paper-soft); }
.rpe-page .toc-panel-list a.is-active { color: var(--ce-blue); font-weight: 600; }
.rpe-page .toc-panel-footer { padding: 12px 20px 16px; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); border-top: 1px solid var(--rule-soft); }
.rpe-page .toc-panel-footer strong { color: var(--ce-blue); }
@media (min-width: 1000px) { .rpe-page .toc-fab, .rpe-page .toc-backdrop, .rpe-page .toc-panel { display: none !important; } }

/* MOBILE CTA CARD */
.rpe-page .mobile-cta-wrap { display: none; max-width: var(--wide); margin: 0 auto; padding: 0 15px 48px; }
.rpe-page .mobile-cta-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; padding: 20px 20px 18px; box-shadow: 0 8px 24px rgba(12,27,58,0.08); }
.rpe-page .mobile-cta-card .pb-kicker { margin-bottom: 10px; }
.rpe-page .mobile-cta-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 8px; }
.rpe-page .mobile-cta-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 14px; }
@media (max-width: 1199px) { .rpe-page .mobile-cta-wrap { display: block; } }

/* MISSING FORM STATES */
.rpe-page .pa-error { font-size: 13px; color: #c0392b; margin: 6px 0 0; line-height: 1.5; }
.rpe-page .pa-form button[disabled] { opacity: 0.7; cursor: wait; }

/* RESPONSIVE — TABLE CARDS (≤600px) */
@media (max-width: 600px) {
  .rpe-page .table-wrap { margin: 16px 0 20px; overflow: visible; }
  .rpe-page .table-wrap table { display: block; border: none; }
  .rpe-page .table-wrap thead { display: none; }
  .rpe-page .table-wrap tbody { display: flex; flex-direction: column; gap: 10px; }
  .rpe-page .table-wrap tbody tr { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; background: var(--paper); }
  .rpe-page .table-wrap tbody tr:hover { background: var(--paper); }
  .rpe-page .table-wrap tbody td { display: block; padding: 10px 14px; border-bottom: 1px solid var(--rule-soft); border-right: none; font-size: 13.5px; color: var(--ink-body); line-height: 1.4; white-space: normal; }
  .rpe-page .table-wrap tbody td:last-child, .rpe-page .table-wrap tbody td:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .rpe-page .table-wrap tbody td::before { content: attr(data-label); display: block; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
  .rpe-page .table-wrap tbody td:first-child { grid-column: 1 / -1; background: var(--ink); color: var(--ce-blue-faint); font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 14px; }
  .rpe-page .table-wrap tbody td:first-child::before { display: none; }
}

/* RESPONSIVE — 768px */
@media (max-width: 768px) {
  .rpe-page .masthead { padding: 40px 15px 32px; }
  .rpe-page .deck { font-size: 17px; }
  .rpe-page .byline { gap: 6px 12px; font-size: 11px; }
  .rpe-page .crumbs { padding: 0 15px; font-size: 10px; }
  .rpe-page .quick-picks { padding: 20px 15px; }
  .rpe-page .quick-picks-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rpe-page .quick-pick-card { padding: 12px 14px; }
  .rpe-page .article-layout { padding: 0 15px; }
  .rpe-page .intro { padding: 28px 0 20px; }
  .rpe-page .intro p { font-size: 17px; }
  .rpe-page .intro p:first-child::first-letter { font-size: 52px; margin: 6px 10px 0 -2px; }
  .rpe-page h2.section-title { font-size: clamp(22px, 5vw, 32px); }
  .rpe-page .section { padding: 44px 0 12px; }
  .rpe-page .subsec { padding: 32px 0 8px; }
  .rpe-page .subsec h3 { font-size: clamp(18px, 4vw, 24px); }
  .rpe-page .prose p { font-size: 16px; }
  .rpe-page .excerpt-block { padding: 16px 18px; }
  .rpe-page .pdf-card { padding: 12px 14px; gap: 12px; }
  .rpe-page .pdf-title { font-size: 14px; }
  .rpe-page .table-wrap table { font-size: 13px; }
  .rpe-page .table-wrap thead th { padding: 10px 12px; font-size: 12px; }
  .rpe-page .table-wrap tbody td { padding: 10px 12px; }
  .rpe-page .routing-guide { padding: 16px 18px 12px; }
  .rpe-page .routing-guide li { font-size: 14.5px; }
  .rpe-page .sec-link-list li { grid-template-columns: 1fr; gap: 6px; }
  .rpe-page .sec-cta-link { margin-top: 0; }
  .rpe-page .mistake-list li { padding: 16px 16px 16px 48px; font-size: 15px; }
  .rpe-page .bridge p { font-size: 17px; }
  .rpe-page .closer p { font-size: 17px; }
  .rpe-page .closer { padding: 24px 0 32px; }
  .rpe-page .keep-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rpe-page .keep-reading { padding: 40px 20px 56px; }
  .rpe-page .keep-reading-label { font-size: 22px; margin-bottom: 20px; }
  .rpe-page .keep-card { padding: 18px; }
  .rpe-page .keep-card h4 { font-size: 16px; }
  .rpe-page .keep-card .keep-img img { height: 130px; }
  .rpe-page .mobile-cta-wrap { padding: 0 20px 36px; }
  .rpe-page .pa-modal { max-width: 100%; }
}

/* RESPONSIVE — 480px */
@media (max-width: 480px) {
  .rpe-page .masthead { padding: 32px 15px 28px; }
  .rpe-page .quick-picks-grid { grid-template-columns: 1fr; }
  .rpe-page .quick-pick-card ol li { font-size: 12.5px; }
  .rpe-page .intro p:first-child::first-letter { font-size: 44px; }
  .rpe-page .byline-badge { display: none; }
  .rpe-page .pdf-card { flex-wrap: wrap; }
  .rpe-page .pdf-arrow { display: none; }
  .rpe-page .excerpt-text { font-size: 13.5px; }
  .rpe-page .excerpt-note { font-size: 12.5px; }
  .rpe-page .mistake-list li { padding-left: 40px; }
  .rpe-page .mistake-list li::before { font-size: 16px; width: 34px; }
  .rpe-page .faq-q .q-text { font-size: 15px; }
  .rpe-page .toc-panel { left: 12px; right: 12px; width: auto; bottom: 80px; }
  .rpe-page .toc-fab { bottom: 16px; left: 16px; }
  .rpe-page .pa-form { flex-direction: column; }
  .rpe-page .pa-modal { padding: 32px 20px 24px; }
  .rpe-page .pa-modal h3 { font-size: 20px; }
  .rpe-page .author-card { padding: 24px 18px; }
  .rpe-page .author-name { font-size: 20px; }
  .rpe-page .article-layout { padding: 0 16px; }
  .rpe-page .keep-reading { padding: 32px 16px 48px; }
  .rpe-page .keep-reading-label { font-size: 20px; }
  .rpe-page .keep-grid { grid-template-columns: 1fr; gap: 10px; }
  .rpe-page .keep-card { padding: 16px; }
  .rpe-page .keep-card .keep-img { display: none; }
  .rpe-page .mobile-cta-wrap { padding: 0 16px 28px; }
}
