:root {
    color-scheme: light;
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-soft: #f8faff;
    --surface-raised: #ffffff;
    --text: #11182e;
    --muted: #667087;
    --subtle: #8d96aa;
    --line: #dfe4ee;
    --line-strong: #cfd6e4;
    --primary: #1769e0;
    --primary-soft: #eaf2ff;
    --green: #25a65a;
    --green-soft: #e9f8ee;
    --blue: #3b82f6;
    --blue-soft: #eaf2ff;
    --amber: #ee9700;
    --amber-soft: #fff6df;
    --red: #d94b4b;
    --shadow: 0 1px 2px rgba(18, 32, 62, .04), 0 6px 22px rgba(30, 54, 96, .035);
    --radius: 12px;
    --radius-sm: 8px;
    --header-height: 64px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #090e1b;
    --surface: #101728;
    --surface-soft: #131c31;
    --surface-raised: #162039;
    --text: #f4f7ff;
    --muted: #a5afc3;
    --subtle: #7f8aa2;
    --line: #27334a;
    --line-strong: #34425d;
    --primary: #6da7ff;
    --primary-soft: #172c50;
    --green: #56d087;
    --green-soft: #183429;
    --blue: #6ca4ff;
    --blue-soft: #192e52;
    --amber: #ffb53f;
    --amber-soft: #3a2b13;
    --red: #ff7a7a;
    --shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

@media (prefers-color-scheme: dark) {
    :root[data-theme="system"] {
        color-scheme: dark;
        --bg: #090e1b;
        --surface: #101728;
        --surface-soft: #131c31;
        --surface-raised: #162039;
        --text: #f4f7ff;
        --muted: #a5afc3;
        --subtle: #7f8aa2;
        --line: #27334a;
        --line-strong: #34425d;
        --primary: #6da7ff;
        --primary-soft: #172c50;
        --green: #56d087;
        --green-soft: #183429;
        --blue: #6ca4ff;
        --blue-soft: #192e52;
        --amber: #ffb53f;
        --amber-soft: #3a2b13;
        --red: #ff7a7a;
        --shadow: 0 10px 28px rgba(0, 0, 0, .18);
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { color: inherit; font: inherit; }
button, select { cursor: pointer; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; transform: translateY(-150%); border-radius: 8px; background: var(--text); color: var(--surface); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 40; top: 0; height: var(--header-height); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; gap: 28px; max-width: 1536px; height: 100%; margin: 0 auto; padding: 0 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-size: 20px; font-weight: 760; letter-spacing: -.5px; }
.brand-dot { font-weight: 650; }
.brand-mark { position: relative; display: inline-grid; width: 30px; height: 30px; place-items: center; overflow: hidden; border-radius: 7px; background: linear-gradient(145deg, #377ff2, #0860d8); box-shadow: 0 5px 14px rgba(23, 105, 224, .24); }
.brand-mark span { width: 0; height: 0; margin-left: 2px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid white; filter: drop-shadow(0 1px 1px rgba(0,0,0,.14)); }
.desktop-nav { display: flex; align-self: stretch; align-items: stretch; gap: 22px; }
.desktop-nav a { position: relative; display: grid; place-items: center; color: var(--muted); font-size: 13px; font-weight: 600; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
.desktop-nav a.active::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; border-radius: 2px 2px 0 0; background: var(--primary); content: ""; }
.site-search { display: flex; align-items: center; gap: 9px; width: min(440px, 34vw); height: 40px; margin-left: auto; padding: 0 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-soft); color: var(--muted); }
.site-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 14%, transparent); }
.site-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; }
.site-search input::placeholder { color: var(--subtle); }
.icon-button { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); }
.icon-button:hover { background: var(--surface-soft); border-color: var(--line-strong); }
:root[data-theme="light"] .theme-icon-light, :root[data-theme="dark"] .theme-icon-dark { display: none; }
.mobile-menu-button, .mobile-nav { display: none; }

.page-shell { max-width: 1536px; margin: 0 auto; padding: 22px 24px 36px; }
.page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 2px 4px 16px; }
.page-heading h1 { margin: 0; font-size: clamp(24px, 2.3vw, 34px); line-height: 1.12; letter-spacing: -.8px; }
.page-heading p:not(.kicker) { margin: 5px 0 0; color: var(--muted); font-size: 15px; }
.kicker { margin: 0 0 5px; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.method-link, .text-link, .center-link { color: var(--primary); font-weight: 650; }
.method-link:hover, .text-link:hover, .center-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.dashboard-grid { display: grid; grid-template-columns: 405px minmax(520px, 1fr) 405px; grid-template-rows: auto auto; gap: 12px; }
.panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.panel-heading { display: flex; min-height: 54px; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 17px 18px 10px; }
.panel-heading h2 { margin: 0; font-size: 16px; line-height: 1.25; letter-spacing: -.2px; }
.panel-heading time, .panel-subtitle { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.heading-with-icon { display: flex; align-items: center; gap: 9px; }
.sun-icon { color: var(--amber); font-size: 21px; }
.morning-panel { grid-column: 1; grid-row: 1; }
.brief-summary { margin: 0; padding: 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.signal-list { display: grid; gap: 0; margin: 12px 0 6px; padding: 0 18px; list-style: none; }
.signal-list li { display: grid; grid-template-columns: 10px minmax(0,1fr) auto; align-items: center; gap: 8px; min-height: 36px; border-top: 1px solid var(--line); font-size: 12px; }
.signal-list li:first-child { border-top: 0; }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--subtle); }
.status-dot.supported { background: var(--green); }
.status-dot.disputed { background: var(--blue); }
.status-dot.watch { background: var(--amber); }
.source-count { padding: 3px 7px; border: 1px solid color-mix(in srgb, var(--primary) 32%, var(--line)); border-radius: 5px; color: var(--primary); background: var(--primary-soft); }
.panel-link, .morning-panel > .text-link { display: inline-block; margin: 4px 18px 14px; font-size: 12px; }

.consensus-panel { grid-column: 2; grid-row: 1 / span 2; }
.consensus-heading { align-items: center; padding-bottom: 14px; }
.segmented-control { display: inline-flex; overflow: hidden; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 7px; }
.segmented-control button { height: 34px; padding: 0 13px; border: 0; border-left: 1px solid var(--line); background: var(--surface); font-size: 12px; }
.segmented-control button:first-child { border-left: 0; }
.segmented-control button.selected { color: var(--primary); background: var(--primary-soft); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary) 50%, transparent); }
.legend { display: flex; gap: 18px; margin: 0 18px; padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 8px; height: 8px; }
.claims-table { margin: 4px 18px 0; }
.claims-row { display: grid; grid-template-columns: minmax(210px, 1.7fr) 78px 115px 96px; min-height: 69px; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }
.claims-row:not(.claims-header):hover { margin: 0 -8px; padding: 0 8px; border-radius: 8px; background: var(--surface-soft); }
.claims-header { min-height: 36px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.claim-title strong { display: block; font-size: 12px; line-height: 1.35; }
.claim-title small, .coverage-cell small, .evidence-cell small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.score-ring { --ring-color: var(--blue); display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: conic-gradient(var(--ring-color) calc(var(--score) * 1%), var(--line) 0); }
.score-ring::before { grid-area: 1/1; width: 33px; height: 33px; border-radius: 50%; background: var(--surface); content: ""; }
.score-ring b { z-index: 1; grid-area: 1/1; font-size: 10px; }
.score-ring.supported { --ring-color: var(--green); }
.score-ring.disputed { --ring-color: var(--blue); }
.score-ring.mixed { --ring-color: var(--amber); }
.coverage-cell b, .evidence-cell b { font-size: 12px; font-weight: 700; }

.right-rail { display: grid; grid-column: 3; grid-row: 1 / span 2; gap: 12px; }
.live-pill { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: 10px; font-weight: 700; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.market-list { padding: 0 18px; }
.market-row { display: grid; grid-template-columns: 35px minmax(80px,1fr) 88px auto; align-items: center; gap: 9px; min-height: 65px; border-top: 1px solid var(--line); }
.market-row:hover strong { color: var(--primary); }
.coin-icon { display: grid; width: 33px; height: 33px; place-items: center; border-radius: 50%; color: #fff; font-weight: 800; }
.coin-icon.bitcoin { background: #f59d19; }
.coin-icon.ethereum { background: #637dec; }
.coin-icon.stablecoin { background: #35ad80; }
.market-name strong, .market-price strong { display: block; font-size: 12px; }
.market-name small, .market-price small { color: var(--muted); font-size: 10px; }
.market-price { text-align: right; }
.market-price small { color: var(--green); }
.sparkline { position: relative; height: 26px; overflow: hidden; }
.sparkline::before, .sparkline::after, .sparkline i { position: absolute; height: 2px; border-radius: 3px; background: var(--green); content: ""; transform-origin: left center; }
.sparkline::before { top: 17px; left: 3px; width: 32px; transform: rotate(-13deg); }
.sparkline i { top: 10px; left: 33px; width: 27px; transform: rotate(12deg); }
.sparkline::after { top: 13px; left: 58px; width: 28px; transform: rotate(-19deg); }
.info-button { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--muted); font-size: 11px; }
.pulse-list { padding: 0 18px; }
.pulse-row { display: grid; grid-template-columns: minmax(120px, 1fr) 100px auto; min-height: 62px; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.pulse-row strong, .pulse-row small { display: block; }
.pulse-row strong { font-size: 11px; }
.pulse-row small { color: var(--muted); font-size: 10px; }
.pulse-row svg { width: 100%; height: 34px; overflow: visible; }
.pulse-row polyline { fill: none; stroke: var(--primary); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; vector-effect: non-scaling-stroke; }
.pulse-row b { color: var(--green); font-size: 13px; }

.timeline-panel { grid-column: 1; grid-row: 2; }
.panel-heading select, .research-filters select { max-width: 140px; height: 32px; padding: 0 28px 0 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); font-size: 11px; }
.timeline-list { position: relative; padding: 0 18px; }
.timeline-list::before { position: absolute; top: 30px; bottom: 30px; left: 59px; width: 1px; background: var(--line-strong); content: ""; }
.timeline-item { position: relative; display: grid; grid-template-columns: 42px 10px 92px minmax(0,1fr) auto; min-height: 66px; align-items: center; gap: 7px; }
.timeline-item time { color: var(--muted); font-size: 10px; }
.timeline-dot { z-index: 1; width: 7px; height: 7px; border: 2px solid var(--surface); border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.video-thumb { position: relative; display: grid; width: 92px; height: 52px; place-items: center; overflow: hidden; border-radius: 7px; background: linear-gradient(135deg, #173456, #2672be); }
.video-thumb.eth { background: linear-gradient(135deg, #161d45, #6d68d7); }
.video-thumb.l2 { background: linear-gradient(135deg, #072c42, #147c94); }
.video-thumb.stable { background: linear-gradient(135deg, #302040, #a96861); }
.video-thumb::before { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.25), transparent 24%), linear-gradient(100deg, transparent 40%, rgba(255,255,255,.12) 41%, transparent 60%); content: ""; }
.play-mini { z-index: 1; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: rgba(0,0,0,.55); color: white; font-size: 8px; }
.video-thumb small { position: absolute; right: 4px; bottom: 3px; z-index: 1; padding: 1px 3px; border-radius: 3px; background: rgba(0,0,0,.72); color: white; font-size: 8px; }
.video-copy { min-width: 0; }
.video-copy strong { display: -webkit-box; overflow: hidden; font-size: 11px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.video-copy small { color: var(--muted); font-size: 9px; }
.verified { color: var(--primary); }
.type-pill { display: inline-flex; width: fit-content; align-items: center; min-height: 19px; padding: 2px 5px; border: 1px solid color-mix(in srgb, var(--blue) 35%, var(--line)); border-radius: 4px; background: var(--blue-soft); color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .03em; }
.type-pill.prediction { border-color: #bda7f5; background: #f2edff; color: #7044d5; }
.type-pill.fact, .type-pill.evidence { border-color: color-mix(in srgb, var(--green) 40%, var(--line)); background: var(--green-soft); color: var(--green); }

.research-section { margin-top: 12px; }
.research-heading { align-items: center; }
.research-filters { display: flex; gap: 8px; }
.research-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; padding: 4px 16px 10px; }
.research-card { display: grid; grid-template-columns: 118px minmax(0,1fr); min-height: 152px; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-raised); }
.research-art { position: relative; display: grid; min-height: 150px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #14284e, #1e6cc8); }
.research-art.ethereum { background: linear-gradient(145deg, #121736, #765fcb); }
.research-art.stablecoin { background: linear-gradient(145deg, #0f393c, #38a985); }
.research-art.layer2 { background: linear-gradient(145deg, #2e1e43, #bd6875); }
.research-art::before { position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.22), transparent 25%), repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,.04) 21px 22px); content: ""; }
.art-symbol { z-index: 1; width: 48px; height: 48px; transform: rotate(45deg); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 0 30px rgba(255,255,255,.16); }
.research-art.bitcoin .art-symbol { border-radius: 50%; }
.research-art.stablecoin .art-symbol { width: 60px; height: 24px; border-width: 2px 0; transform: none; }
.duration { position: absolute; right: 5px; bottom: 5px; z-index: 1; padding: 2px 5px; border-radius: 3px; background: rgba(0,0,0,.72); color: white; font-size: 9px; }
.research-copy { display: flex; min-width: 0; flex-direction: column; padding: 10px; }
.research-copy h3 { margin: 7px 0 5px; font-size: 12px; line-height: 1.35; }
.research-copy h3 a:hover { color: var(--primary); }
.research-copy p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.research-copy > div { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--muted); font-size: 9px; }
.research-copy > div a { color: var(--primary); font-size: 16px; }
.center-link { display: block; width: fit-content; margin: 2px auto 14px; font-size: 12px; }

.article-shell { max-width: 820px; margin: 0 auto; padding: 70px 24px; }
.article-shell h1 { max-width: 760px; margin: 0; font-size: clamp(32px, 5vw, 52px); line-height: 1.08; letter-spacing: -1.5px; }
.article-lead { margin: 22px 0 50px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.article-shell section { padding: 28px 0; border-top: 1px solid var(--line); }
.article-shell section h2 { margin: 0 0 8px; font-size: 20px; }
.article-shell section p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.empty-state { display: grid; min-height: calc(100vh - 230px); max-width: 620px; margin: auto; padding: 80px 24px; place-items: center; align-content: center; text-align: center; }
.brand-mark.large { width: 60px; height: 60px; border-radius: 15px; }
.brand-mark.large span { border-top-width: 13px; border-bottom-width: 13px; border-left-width: 20px; }
.empty-state h1 { margin: 5px 0; font-size: 34px; }
.empty-state > p:not(.kicker) { color: var(--muted); }
.primary-button { display: inline-flex; min-height: 42px; align-items: center; margin-top: 14px; padding: 0 16px; border-radius: 8px; background: var(--primary); color: white; font-weight: 700; }

.site-footer { display: flex; max-width: 1536px; align-items: flex-start; justify-content: space-between; gap: 40px; margin: 0 auto; padding: 30px 24px 38px; border-top: 1px solid var(--line); color: var(--muted); }
.brand-footer { color: var(--text); font-size: 16px; }
.brand-footer .brand-mark { width: 24px; height: 24px; border-radius: 6px; }
.site-footer p { max-width: 660px; margin: 10px 0 0; font-size: 11px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: 11px; }
.site-footer a:hover { color: var(--primary); }

.public-empty { display: grid; min-height: 170px; place-items: center; align-content: center; gap: 4px; padding: 26px; color: var(--muted); text-align: center; }
.public-empty strong { color: var(--text); }
.public-empty span { font-size: 11px; }
.public-empty.compact { min-height: 100px; }
.empty-signal { color: var(--muted); }
.section-heading { margin: 0 0 15px; }
.section-heading h2 { margin: 0; font-size: 22px; letter-spacing: -.4px; }
.section-heading p { margin: 4px 0 0; color: var(--muted); }

.topic-hero, .directory-hero { padding-top: 58px; padding-bottom: 34px; }
.topic-hero h1, .directory-hero h1, .creator-profile h1 { max-width: 900px; margin: 0; font-size: clamp(34px,5vw,58px); line-height: 1.05; letter-spacing: -1.8px; }
.topic-hero > p:not(.kicker), .directory-hero > p:not(.kicker), .creator-profile p:not(.kicker) { max-width: 780px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.topic-metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.topic-metrics span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--muted); font-size: 11px; }
.topic-metrics b { margin-right: 4px; color: var(--text); font-size: 16px; }
.topic-layout { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(280px,.65fr); align-items: start; gap: 14px; padding-top: 0; }
.topic-claims { padding: 0 18px 16px; }
.topic-claims article { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 13px; padding: 16px 0; border-top: 1px solid var(--line); }
.topic-claims h3 { margin: 5px 0 3px; font-size: 14px; }
.topic-claims p { margin: 0; color: var(--muted); font-size: 10px; }
.simple-link-list { display: grid; padding: 0 17px 13px; }
.simple-link-list a { display: grid; gap: 3px; padding: 12px 0; border-top: 1px solid var(--line); }
.simple-link-list a:hover strong { color: var(--primary); }
.simple-link-list strong { font-size: 11px; line-height: 1.35; }
.simple-link-list span { color: var(--muted); font-size: 9px; }
.public-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.public-card { display: flex; min-height: 190px; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); box-shadow: var(--shadow); }
.public-card h3 { margin: 10px 0 7px; font-size: 16px; line-height: 1.35; }
.public-card h3 a:hover { color: var(--primary); }
.public-card p { margin: 0 0 18px; color: var(--muted); font-size: 11px; }
.public-card small { margin-top: auto; color: var(--muted); }

.detail-shell { max-width: 1260px; margin: 0 auto; padding: 50px 24px 70px; }
.detail-header { max-width: 960px; margin-bottom: 34px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 34px; color: var(--muted); font-size: 10px; }
.breadcrumbs a:hover { color: var(--primary); }
.detail-header h1 { margin: 0; font-size: clamp(34px,5vw,58px); line-height: 1.06; letter-spacing: -1.7px; }
.detail-header > p:not(.kicker) { max-width: 860px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.62; }
.detail-byline { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 21px; color: var(--muted); font-size: 10px; }
.detail-byline a { color: var(--primary); font-weight: 700; }
.detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 315px; align-items: start; gap: 22px; }
.video-embed { position: relative; width: 100%; overflow: hidden; padding-top: 56.25%; border-radius: 13px; background: #05080f; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.source-watch { display: grid; min-height: 190px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--primary); font-weight: 750; }
.detail-section { margin-top: 38px; }
.claim-evidence-list { display: grid; border-top: 1px solid var(--line); }
.claim-evidence-list article { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.timestamp { color: var(--primary); font-size: 12px; font-weight: 800; }
.claim-evidence-list h3 { margin: 7px 0 4px; font-size: 17px; }
.claim-evidence-list p { margin: 0 0 6px; color: var(--muted); }
.claim-evidence-list small { color: var(--subtle); }
.detail-aside { position: sticky; top: 86px; display: grid; gap: 12px; }
.evidence-card { padding: 18px; }
.evidence-card h2 { margin: 0 0 12px; font-size: 14px; }
.evidence-card dl { margin: 0 0 12px; }
.evidence-card dl div { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); }
.evidence-card dt { color: var(--muted); font-size: 10px; }
.evidence-card dd { margin: 0; font-size: 11px; font-weight: 750; }
.evidence-card > p { color: var(--muted); font-size: 10px; line-height: 1.55; }
.evidence-card > a { color: var(--primary); font-size: 10px; font-weight: 700; }
.contract-check { display: grid; gap: 3px; padding: 10px 0; border-top: 1px solid var(--line); }
.contract-check code { color: var(--primary); font-size: 10px; }
.contract-check span { color: var(--muted); font-size: 9px; }
.research-body { font-size: 16px; line-height: 1.75; }
.research-body > p:first-child { color: var(--muted); font-size: 18px; }
.research-body h2 { margin: 38px 0 8px; font-size: 23px; line-height: 1.25; }
.research-body p { margin: 0 0 20px; }
.source-citations { display: grid; }
.source-citations a { display: grid; grid-template-columns: 22px 1fr; gap: 8px; padding: 10px 0; border-top: 1px solid var(--line); }
.source-citations a > b { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-size: 8px; }
.source-citations strong,.source-citations small { display: block; }
.source-citations strong { font-size: 9px; line-height: 1.4; }
.source-citations small { margin-top: 2px; color: var(--muted); font-size: 8px; }

.creator-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.creator-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; min-height: 175px; padding: 18px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); box-shadow: var(--shadow); }
.creator-avatar { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: linear-gradient(145deg,var(--primary),#714bc7); color: white; font-weight: 850; }
.creator-card h2 { margin: 0; font-size: 14px; }.creator-card h2 a:hover { color: var(--primary); }.creator-card > div > span { color: var(--muted); font-size: 9px; }
.creator-score { text-align: right; }.creator-score b,.creator-score small { display: block; }.creator-score b { font-size: 15px; }.creator-score small { color: var(--muted); font-size: 7px; }
.creator-card > p { grid-column: 1/-1; margin: 10px 0 0; padding-top: 10px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }.creator-card > a { grid-column: 1/-1; color: var(--primary); font-size: 9px; font-weight: 700; }
.directory-empty { grid-column: 1/-1; }
.creator-profile { display: grid; grid-template-columns: 90px minmax(0,1fr) auto; align-items: center; gap: 24px; padding-top: 60px; padding-bottom: 45px; }
.large-avatar { width: 86px; height: 86px; font-size: 28px; }.profile-score { display: grid; padding: 16px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); text-align: right; }.profile-score b { font-size: 22px; }.profile-score span { color: var(--muted); font-size: 8px; }

.search-page { max-width: 960px; padding-top: 70px; }
.search-page h1 { margin: 0 0 22px; font-size: clamp(30px,5vw,48px); letter-spacing: -1px; }
.large-search { display: flex; height: 52px; margin-bottom: 30px; }
.large-search input { min-width: 0; flex: 1; padding: 0 15px; border: 1px solid var(--line); border-radius: 9px 0 0 9px; outline: 0; background: var(--surface); }
.large-search input:focus { border-color: var(--primary); }
.large-search button { padding: 0 18px; border: 0; border-radius: 0 9px 9px 0; background: var(--primary); color: white; font-weight: 750; }
.search-results { display: grid; }
.search-results article { padding: 22px 0; border-top: 1px solid var(--line); }
.search-results h2 { margin: 8px 0 4px; font-size: 19px; }.search-results h2 a:hover { color: var(--primary); }.search-results p { margin: 0 0 6px; color: var(--muted); }.search-results small { color: var(--subtle); }

@media (max-width: 1240px) {
    .dashboard-grid { grid-template-columns: minmax(320px, .9fr) minmax(540px, 1.4fr); }
    .right-rail { grid-column: 1 / -1; grid-row: 3; grid-template-columns: 1fr 1fr; }
    .research-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .desktop-nav { gap: 14px; }
}

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-menu-button { display: grid; }
    .mobile-nav { position: fixed; top: var(--header-height); right: 0; left: 0; z-index: 39; padding: 8px 16px 16px; border-bottom: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
    .mobile-nav:not([hidden]) { display: grid; }
    .mobile-nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); font-weight: 650; }
    .site-search { width: auto; flex: 1; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .morning-panel, .consensus-panel, .timeline-panel, .right-rail { grid-column: 1; grid-row: auto; }
    .consensus-panel { order: -1; }
    .topic-layout,.detail-grid { grid-template-columns: 1fr; }
    .detail-aside { position: static; }
    .creator-grid,.public-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    :root { --header-height: 58px; --radius: 10px; }
    .header-inner { gap: 10px; padding: 0 14px; }
    .brand { font-size: 17px; }
    .brand-mark { width: 27px; height: 27px; }
    .site-search { display: none; }
    .theme-toggle { margin-left: auto; }
    .page-shell { padding: 16px 12px 24px; }
    .page-heading { display: block; margin-bottom: 14px; }
    .page-heading h1 { font-size: 27px; }
    .page-heading p:not(.kicker) { font-size: 13px; }
    .method-link { display: inline-block; margin-top: 10px; font-size: 12px; }
    .dashboard-grid { gap: 10px; }
    .panel-heading { padding: 14px 14px 9px; }
    .brief-summary, .signal-list, .market-list, .pulse-list, .timeline-list { padding-right: 14px; padding-left: 14px; }
    .morning-panel > .text-link, .panel-link { margin-right: 14px; margin-left: 14px; }
    .consensus-heading { align-items: flex-start; flex-direction: column; }
    .segmented-control { width: 100%; }
    .segmented-control button { flex: 1; padding: 0 7px; }
    .legend { margin: 0 14px; gap: 10px; overflow-x: auto; white-space: nowrap; }
    .claims-table { margin: 0 14px; }
    .claims-header { display: none; }
    .claims-row { grid-template-columns: minmax(0,1fr) 50px; gap: 8px; padding: 10px 0; }
    .claims-row > span:nth-child(3), .claims-row > span:nth-child(4) { grid-column: 1; }
    .claims-row > span:nth-child(3) { grid-row: 2; }
    .claims-row > span:nth-child(4) { grid-column: 2; grid-row: 2; text-align: right; }
    .right-rail { grid-template-columns: 1fr; }
    .timeline-list::before { left: 53px; }
    .timeline-item { grid-template-columns: 35px 9px 82px minmax(0,1fr); min-height: 64px; }
    .video-thumb { width: 82px; height: 47px; }
    .timeline-item > .type-pill { display: none; }
    .research-heading { align-items: flex-start; flex-direction: column; }
    .research-filters { width: 100%; }
    .research-filters select { flex: 1; min-width: 0; }
    .research-grid { grid-template-columns: 1fr; padding: 4px 10px 10px; }
    .research-card { grid-template-columns: 105px minmax(0,1fr); }
    .research-art { min-height: 145px; }
    .site-footer { align-items: flex-start; flex-direction: column; padding: 26px 18px; }
    .site-footer nav { justify-content: flex-start; }
    .topic-hero,.directory-hero { padding-top: 38px; }
    .topic-hero h1,.directory-hero h1,.creator-profile h1,.detail-header h1 { font-size: 34px; letter-spacing: -.8px; }
    .detail-shell { padding: 34px 14px 50px; }
    .detail-header > p:not(.kicker) { font-size: 15px; }
    .claim-evidence-list article { grid-template-columns: 1fr; gap: 7px; }
    .creator-grid,.public-card-grid { grid-template-columns: 1fr; }
    .creator-profile { grid-template-columns: 62px 1fr; gap: 14px; }
    .large-avatar { width: 60px; height: 60px; }
    .profile-score { grid-column: 1/-1; text-align: left; }
    .large-search button { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
