:root {
  color-scheme: dark;
  --bg: #02070b;
  --panel: #07131a;
  --panel-2: #0a1921;
  --ink: #effcff;
  --muted: #7996a0;
  --dim: #4d6973;
  --cyan: #58f1d1;
  --cyan-2: #b8fff0;
  --gold: #f4c969;
  --blue: #6ebdff;
  --red: #ff4565;
  --line: rgba(91, 225, 202, .16);
  --line-blue: rgba(110, 189, 255, .16);
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 300px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -8%, rgba(37, 224, 190, .12), transparent 36rem),
    radial-gradient(circle at -4% 38%, rgba(41, 107, 224, .1), transparent 34rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(88, 241, 209, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 241, 209, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 92%);
}
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.skyline { position: fixed; z-index: -1; top: 0; left: 50%; width: min(1600px, 100%); height: 360px; transform: translateX(-50%); pointer-events: none; }
.skyline i { position: absolute; display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(88, 241, 209, .42), transparent); transform-origin: center; }
.skyline i:nth-child(1) { top: 96px; left: 48%; width: 720px; transform: rotate(-28deg); }
.skyline i:nth-child(2) { top: 156px; left: 48%; width: 520px; transform: rotate(19deg); opacity: .54; }
.skyline i:nth-child(3) { top: 224px; right: 48%; width: 680px; transform: rotate(-12deg); opacity: .36; }

.site-header {
  position: relative;
  z-index: 20;
  width: min(1480px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 13px; font-weight: 950; letter-spacing: .2em; }
.brand small { margin-top: 4px; color: #63818b; font-size: 7px; font-weight: 850; letter-spacing: .23em; }
.raptor-mark { position: relative; width: 48px; height: 42px; display: inline-block; filter: drop-shadow(0 0 18px rgba(88, 241, 209, .2)); }
.raptor-mark::before, .raptor-mark::after {
  position: absolute;
  top: 8px;
  width: 25px;
  height: 22px;
  content: "";
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan) 58%, #168f7a);
}
.raptor-mark::before { left: 0; clip-path: polygon(0 0, 100% 34%, 78% 100%, 49% 57%, 0 39%); }
.raptor-mark::after { right: 0; transform: scaleX(-1); clip-path: polygon(0 0, 100% 34%, 78% 100%, 49% 57%, 0 39%); }
.raptor-mark b { position: absolute; z-index: 2; left: 50%; top: 14px; width: 8px; height: 18px; transform: translateX(-50%); background: var(--gold); clip-path: polygon(50% 0, 100% 38%, 64% 100%, 0 67%); }
.site-header nav { display: flex; align-items: center; gap: 26px; }
.site-header nav a { color: #8aa4ad; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a[aria-current="page"] { color: var(--ink); }
.site-header nav .nav-cta { min-height: 40px; padding: 0 15px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(88, 241, 209, .28); color: var(--cyan); background: rgba(88, 241, 209, .06); }

.page-shell { position: relative; width: min(1480px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 74px; }
.page-shell.narrow { max-width: 860px; min-height: calc(100vh - 250px); display: grid; place-items: center; }
.section-kicker { color: var(--gold); font-size: 9px; font-weight: 950; letter-spacing: .22em; }
.button { min-height: 50px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid transparent; color: var(--ink); font-size: 10px; font-weight: 950; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #031310; background: linear-gradient(110deg, #d6fff6, var(--cyan) 62%, #2cccad); box-shadow: 0 12px 42px rgba(88, 241, 209, .14); }
.button.primary:hover { box-shadow: 0 16px 54px rgba(88, 241, 209, .24); }
.button.ghost { border-color: rgba(110, 189, 255, .2); color: #a9c0c8; background: rgba(8, 24, 33, .72); }
.button.ghost:hover { border-color: rgba(88, 241, 209, .42); color: var(--cyan); }

.archive-hero { min-height: 510px; display: grid; grid-template-columns: minmax(390px, .85fr) minmax(560px, 1.15fr); gap: clamp(38px, 6vw, 94px); align-items: center; }
.archive-hero > *, .hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 760px; margin: 18px 0 24px; font-size: clamp(53px, 6.1vw, 94px); line-height: .88; letter-spacing: -.065em; }
.hero-copy h1 em { color: var(--cyan); font-style: normal; font-weight: 780; }
.hero-copy > p { max-width: 650px; margin: 0; color: #91aab3; font-size: clamp(14px, 1.25vw, 18px); line-height: 1.72; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.verification-strip { margin-top: 33px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 18px 25px; border-top: 1px solid var(--line); }
.verification-strip span { color: #688690; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.verification-strip b { margin-right: 7px; color: var(--gold); }

.live-board { position: relative; min-height: 350px; padding: 22px; border: 1px solid rgba(88, 241, 209, .24); background: linear-gradient(145deg, rgba(10, 29, 37, .96), rgba(3, 12, 18, .96)); box-shadow: var(--shadow), inset 0 0 80px rgba(88, 241, 209, .025); }
.live-board::before, .live-board::after { position: absolute; width: 78px; height: 2px; content: ""; background: var(--cyan); box-shadow: 0 0 18px rgba(88, 241, 209, .6); }
.live-board::before { top: -1px; left: -1px; }
.live-board::after { right: -1px; bottom: -1px; background: var(--gold); box-shadow: 0 0 18px rgba(244, 201, 105, .42); }
.live-board > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.live-board h2 { margin: 10px 0 0; font-size: 25px; letter-spacing: -.035em; }
.live-board > header p { max-width: 470px; margin: 7px 0 0; color: #78959f; font-size: 11px; line-height: 1.45; }
.live-board > header > a { margin-top: 8px; color: #7b9ca6; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.live-board > header > a:hover { color: var(--cyan); }
.activity-totals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(88, 241, 209, .045), rgba(110, 189, 255, .025)); }
.activity-totals > div { min-width: 0; min-height: 66px; padding: 11px 14px 9px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(110, 189, 255, .11); }
.activity-totals > div:nth-child(3) { border-right: 0; }
.activity-totals span { overflow: hidden; color: #73919b; font-size: 8px; font-weight: 950; letter-spacing: .12em; text-overflow: ellipsis; white-space: nowrap; }
.activity-totals strong { margin-top: 4px; color: var(--ink); font-size: 29px; font-weight: 950; line-height: 1; letter-spacing: -.045em; font-variant-numeric: tabular-nums; text-shadow: 0 0 20px rgba(88, 241, 209, .13); }
.activity-totals > small { grid-column: 1 / -1; min-height: 20px; padding: 5px 10px 4px; border-top: 1px solid rgba(110, 189, 255, .08); color: #506d77; font-size: 7px; font-weight: 900; letter-spacing: .13em; text-align: right; }
.state-pill { width: fit-content; min-height: 28px; padding: 0 10px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line-blue); color: #8facb5; background: rgba(8, 25, 34, .84); font-size: 9px; font-weight: 950; letter-spacing: .11em; white-space: nowrap; }
.state-pill i { width: 6px; height: 6px; border-radius: 50%; background: #6f8992; }
.state-pill.is-live { border-color: rgba(255, 69, 101, .27); color: #ff9daf; background: rgba(255, 69, 101, .07); }
.state-pill.is-live i { background: var(--red); box-shadow: 0 0 0 0 rgba(255, 69, 101, .65); animation: livePulse 1.8s infinite; }
.state-pill.is-archived i { background: var(--cyan); }
.state-pill.is-delayed { border-color: rgba(244, 201, 105, .34); color: var(--gold); background: rgba(244, 201, 105, .07); }
.state-pill.is-delayed i { background: var(--gold); box-shadow: none; animation: none; }
@keyframes livePulse { 70% { box-shadow: 0 0 0 8px rgba(255, 69, 101, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 69, 101, 0); } }
.event-watch { margin: 13px 0 8px; min-height: 58px; padding: 10px 12px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border: 1px solid rgba(244, 201, 105, .22); background: rgba(244, 201, 105, .055); }
.event-watch > span { color: var(--gold); font-size: 7px; font-weight: 950; letter-spacing: .12em; }
.event-watch strong { font-size: 11px; }
.event-watch time { color: #a68f61; font-size: 8px; white-space: nowrap; }
.open-list { min-height: 168px; display: flex; flex-direction: column; }
.open-trade { min-height: 78px; display: grid; grid-template-columns: minmax(105px, .8fr) minmax(180px, 1.35fr) minmax(140px, 1fr) auto; align-items: center; gap: 16px; padding: 12px 5px; border-bottom: 1px solid rgba(110, 189, 255, .1); text-decoration: none; transition: background .2s ease, padding .2s ease; }
.open-trade:hover { padding-inline: 10px; background: rgba(88, 241, 209, .035); }
.open-trade span { min-width: 0; }
.open-trade strong { font-size: 17px; letter-spacing: .025em; }
.open-trade small { display: block; margin-top: 5px; overflow: hidden; color: #6f8d97; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-overflow: ellipsis; white-space: nowrap; }
.open-trade span:nth-child(2) b { display: block; margin-top: 5px; font-size: 16px; font-weight: 900; line-height: 1.1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.open-trade .move { text-align: right; }
.open-trade .move small { color: #8ba6ae; }
.open-trade .move b { display: block; margin-top: 5px; font-size: clamp(19px, 1.35vw, 23px); font-weight: 950; line-height: 1; letter-spacing: -.025em; font-variant-numeric: tabular-nums; text-shadow: 0 0 18px rgba(88, 241, 209, .2); white-space: nowrap; }
.open-trade time { color: var(--cyan); font-size: 10px; font-weight: 950; white-space: nowrap; }
.live-board > footer { min-height: 34px; padding-top: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; color: #57737d; font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.live-board > footer strong { color: var(--cyan); }
.board-empty { min-height: 168px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; color: #75919a; text-align: center; }
.board-empty strong { max-width: 340px; color: #b8cdd3; font-size: 14px; line-height: 1.5; }
.board-empty a { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.board-empty.compact span { font-size: 11px; }
.radar { position: relative; width: 54px; height: 54px; border: 1px solid rgba(88, 241, 209, .24); border-radius: 50%; }
.radar::before, .radar::after { position: absolute; content: ""; }
.radar::before { inset: 9px; border: 1px solid rgba(88, 241, 209, .14); border-radius: 50%; }
.radar::after { top: 50%; left: 50%; width: 22px; height: 1px; background: var(--cyan); transform-origin: left; animation: radar 2.8s linear infinite; }
@keyframes radar { to { transform: rotate(360deg); } }

.positive { color: var(--cyan) !important; }
.negative { color: #ff8298 !important; }
.flat { color: #9db2b9 !important; }

.alert-cta-bar { min-height: 92px; margin: 28px 0 92px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(88, 241, 209, .18); background: linear-gradient(95deg, rgba(88, 241, 209, .09), rgba(8, 24, 33, .88) 58%, rgba(110, 189, 255, .06)); }
.alert-cta-bar div { display: flex; flex-direction: column; gap: 6px; }
.alert-cta-bar span { color: var(--gold); font-size: 7px; font-weight: 950; letter-spacing: .16em; }
.alert-cta-bar strong { font-size: 15px; letter-spacing: -.015em; }

.section-heading { margin-bottom: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.section-heading h2 { margin: 9px 0 0; font-size: clamp(31px, 4vw, 52px); letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: #66828c; font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.filter-panel { padding: 18px; display: grid; grid-template-columns: 1.6fr repeat(7, minmax(108px, 1fr)) auto; gap: 10px; border: 1px solid var(--line-blue); background: rgba(6, 19, 27, .88); box-shadow: 0 18px 62px rgba(0, 0, 0, .2); }
.filter-panel label { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.filter-panel label > span { color: #64818b; font-size: 7px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.filter-panel input, .filter-panel select { width: 100%; min-height: 44px; padding: 0 11px; border: 1px solid rgba(110, 189, 255, .14); border-radius: 0; outline: 0; color: #dceff3; background: #06141c; font-size: 10px; }
.filter-panel input::placeholder { color: #49636d; }
.filter-panel input:focus, .filter-panel select:focus { border-color: rgba(88, 241, 209, .52); box-shadow: 0 0 0 3px rgba(88, 241, 209, .05); }
.filter-submit { min-height: 44px; align-self: end; padding: 0 14px; border: 0; color: #031310; background: var(--cyan); font-size: 8px; font-weight: 950; letter-spacing: .08em; cursor: pointer; }
.filter-clear { grid-column: 1 / -1; width: fit-content; color: #617e88; font-size: 8px; font-weight: 850; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.filter-clear:hover { color: var(--cyan); }

.session-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.session-card { min-width: 0; overflow: hidden; border: 1px solid var(--line-blue); background: linear-gradient(155deg, rgba(9, 25, 34, .95), rgba(4, 13, 19, .98)); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.session-card:hover { transform: translateY(-4px); border-color: rgba(88, 241, 209, .3); box-shadow: 0 24px 60px rgba(0, 0, 0, .3); }
.card-media { position: relative; aspect-ratio: 12 / 5; display: block; overflow: hidden; background: #020609; }
.card-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(2, 8, 12, .7), transparent 55%); }
.card-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 38%; opacity: .86; filter: saturate(.96) contrast(1.04); transition: transform .35s ease, opacity .35s ease; }
.session-card:hover .card-media img { transform: scale(1.025); opacity: 1; }
.card-media .state-pill { position: absolute; z-index: 2; top: 12px; left: 12px; }
.play-mark { position: absolute; z-index: 2; right: 15px; bottom: 14px; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(88, 241, 209, .4); border-radius: 50%; color: var(--cyan); background: rgba(2, 11, 16, .75); font-size: 12px; backdrop-filter: blur(8px); }
.card-body { padding: 21px; }
.card-body > time { color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.card-body h3 { min-height: 50px; margin: 9px 0 7px; font-size: 20px; line-height: 1.28; letter-spacing: -.022em; }
.card-body h3 a { text-decoration: none; }
.card-body > p { min-height: 19px; margin: 0; overflow: hidden; color: #78949d; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.card-stats { margin-top: 17px; display: grid; grid-template-columns: .75fr 1fr 1fr 1.25fr; border: 1px solid rgba(110, 189, 255, .13); background: linear-gradient(110deg, rgba(88, 241, 209, .035), rgba(110, 189, 255, .025)); }
.card-stats span { min-width: 0; min-height: 76px; padding: 13px 11px; display: flex; flex-direction: column; justify-content: center; gap: 6px; border-left: 1px solid rgba(110, 189, 255, .1); }
.card-stats span:first-child { border-left: 0; }
.card-stats small { overflow: hidden; color: #6b8790; font-size: 8px; font-weight: 900; letter-spacing: .075em; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.card-stats strong { font-size: 19px; font-weight: 950; font-variant-numeric: tabular-nums; }
.card-stats span:last-child strong { font-size: 22px; line-height: 1; text-shadow: 0 0 18px rgba(88, 241, 209, .16); }
.card-link { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; color: #a2bbc3; font-size: 10px; font-weight: 950; letter-spacing: .1em; text-decoration: none; }
.card-link span { color: var(--cyan); font-size: 15px; transition: transform .2s ease; }
.card-link:hover { color: var(--cyan); }
.card-link:hover span { transform: translateX(4px); }
.catalog-empty, .system-state { padding: 70px 24px; border: 1px solid var(--line-blue); background: rgba(6, 18, 25, .84); text-align: center; }
.catalog-empty { margin-top: 22px; }
.catalog-empty > span, .system-state > span { color: var(--gold); font-size: 8px; font-weight: 950; letter-spacing: .15em; }
.catalog-empty h3, .system-state h1 { margin: 14px auto 10px; font-size: clamp(25px, 3vw, 42px); letter-spacing: -.04em; }
.catalog-empty p, .system-state p { max-width: 570px; margin: 0 auto 22px; color: #78949e; font-size: 12px; line-height: 1.65; }
.pagination { margin-top: 28px; display: flex; justify-content: center; gap: 7px; }
.pagination a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line-blue); color: #78939d; font-size: 9px; font-weight: 900; text-decoration: none; }
.pagination a:hover, .pagination a[aria-current="page"] { border-color: var(--cyan); color: #04130f; background: var(--cyan); }

.methodology { margin-top: 98px; padding: 42px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(88, 241, 209, .045), rgba(7, 21, 29, .9)); }
.methodology > div:first-child { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.methodology h2 { max-width: 650px; margin: 10px 0 0; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.045em; }
.method-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.method-grid article { padding: 24px; background: #07151c; }
.method-grid b { color: var(--gold); font-size: 9px; letter-spacing: .12em; }
.method-grid h3 { margin: 13px 0 8px; font-size: 16px; }
.method-grid p { margin: 0; color: #78939d; font-size: 11px; line-height: 1.65; }

.breadcrumbs { margin-bottom: 32px; display: flex; align-items: center; gap: 10px; color: #58747e; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: #8ca6af; text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan); }
.session-hero { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 44px; align-items: end; }
.eyebrow-row { display: flex; align-items: center; gap: 13px; color: #708d96; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.session-hero h1 { max-width: 1000px; margin: 18px 0 15px; font-size: clamp(42px, 5.6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.session-hero > div > p { max-width: 830px; margin: 0; color: #8fa8b1; font-size: 14px; line-height: 1.7; }
.session-meta { margin-top: 28px; display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); }
.session-meta span { min-width: 145px; padding: 15px 28px 0 0; display: flex; flex-direction: column; gap: 5px; }
.session-meta small { color: #58747e; font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.session-meta strong { font-size: 13px; }
.session-meta em { color: #58747e; font-size: 7px; font-style: normal; letter-spacing: .05em; }
.device-card { padding: 26px; border: 1px solid rgba(88, 241, 209, .22); background: linear-gradient(145deg, rgba(9, 31, 37, .95), rgba(4, 14, 20, .98)); box-shadow: 0 20px 60px rgba(0, 0, 0, .28); }
.device-card > span { color: var(--gold); font-size: 7px; font-weight: 950; letter-spacing: .13em; }
.device-card h2 { margin: 10px 0 8px; font-size: 24px; letter-spacing: -.035em; }
.device-card p { margin: 0 0 17px; color: #809ba4; font-size: 11px; line-height: 1.6; }
.device-card .button { width: 100%; }
.device-card > small { margin-top: 10px; display: block; color: #57747e; font-size: 7px; text-align: center; letter-spacing: .08em; text-transform: uppercase; }

.news-ribbon { margin-top: 40px; min-height: 68px; padding: 11px 14px; display: grid; grid-template-columns: 170px 1fr; align-items: stretch; gap: 14px; border: 1px solid rgba(244, 201, 105, .22); background: rgba(244, 201, 105, .045); }
.news-label { display: flex; align-items: center; gap: 9px; color: var(--gold); font-size: 7px; font-weight: 950; letter-spacing: .12em; }
.news-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(244, 201, 105, .5); }
.news-items { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.news-items .news-event { min-width: 260px; padding: 9px 12px; display: grid; grid-template-columns: auto 1fr; gap: 3px 8px; border-left: 1px solid rgba(244, 201, 105, .2); text-decoration: none; }
.news-items .news-event b { color: var(--gold); font-size: 6px; letter-spacing: .09em; white-space: nowrap; }
.news-items strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.news-items time { grid-column: 2; color: #816e4a; font-size: 7px; }
.news-items .news-event:focus-visible { outline: 1px solid var(--cyan); outline-offset: -2px; }
.news-items .news-event--high b { color: #ff7189; }

.watch-grid { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; }
.video-stage { padding: 6px; border: 1px solid rgba(88, 241, 209, .23); background: linear-gradient(135deg, rgba(88, 241, 209, .07), rgba(3, 10, 15, .9)); box-shadow: var(--shadow); }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-foot { min-height: 38px; padding: 0 7px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #58747e; font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.video-foot a { color: #91abb4; text-decoration: none; }
.video-foot a:hover { color: var(--cyan); }
.proof-panel { padding: 28px; border: 1px solid var(--line-blue); background: rgba(7, 22, 30, .92); }
.proof-panel h2 { margin: 12px 0 23px; font-size: 26px; line-height: 1.08; letter-spacing: -.04em; }
.proof-panel ol { margin: 0; padding: 0; list-style: none; }
.proof-panel li { padding: 12px 0; display: flex; align-items: center; gap: 13px; border-top: 1px solid rgba(110, 189, 255, .1); color: #9cb4bc; font-size: 10px; }
.proof-panel li b { color: var(--gold); font-size: 7px; letter-spacing: .1em; }
.proof-panel > p { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #5f7c86; font-size: 9px; line-height: 1.55; }

.ledger { margin-top: 56px; }
.ledger-key { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px; color: #718d96; font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.ledger-key span { display: flex; align-items: center; gap: 6px; }
.ledger-key i { width: 6px; height: 6px; border-radius: 50%; }
.key-live { background: var(--red); }
.key-complete { background: var(--cyan); }
#syncState { color: #56737c; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line-blue); box-shadow: 0 20px 64px rgba(0, 0, 0, .2); }
table { width: 100%; min-width: 1480px; border-collapse: collapse; background: rgba(5, 17, 24, .92); }
th { height: 50px; padding: 0 13px; color: #66838d; background: #071720; font-size: 9px; font-weight: 950; letter-spacing: .085em; text-align: left; text-transform: uppercase; white-space: nowrap; }
td { height: 82px; padding: 13px; border-top: 1px solid rgba(110, 189, 255, .09); color: #dcecf0; font-size: 13px; vertical-align: middle; white-space: nowrap; }
tbody tr { transition: background .18s ease; }
tbody tr:hover { background: rgba(88, 241, 209, .025); }
td small { margin-top: 5px; display: block; color: #64808a; font-size: 8px; font-weight: 850; letter-spacing: .07em; }
.timestamp-link { display: flex; flex-direction: column; color: var(--cyan); text-decoration: none; }
.timestamp-link b { font-size: 15px; }
.timestamp-link:hover small { color: var(--cyan); }
.symbol { font-size: 16px; letter-spacing: .025em; }
.side { min-width: 52px; min-height: 28px; display: inline-grid; place-items: center; border: 1px solid var(--line-blue); font-size: 9px; font-weight: 950; letter-spacing: .09em; }
.side.buy { border-color: rgba(88, 241, 209, .25); color: var(--cyan); background: rgba(88, 241, 209, .055); }
.side.sell { border-color: rgba(255, 130, 152, .25); color: #ff8298; background: rgba(255, 69, 101, .055); }
.price { font-size: 16px; font-weight: 850; font-variant-numeric: tabular-nums; }
td .move { font-size: 19px; font-weight: 950; line-height: 1; font-variant-numeric: tabular-nums; text-shadow: 0 0 18px rgba(88, 241, 209, .14); }
.peak-cell { min-width: 220px; background: linear-gradient(110deg, rgba(88, 241, 209, .085), rgba(88, 241, 209, .018)); box-shadow: inset 2px 0 0 rgba(88, 241, 209, .48); }
.peak-cell > small:first-child { margin: 0 0 8px; color: var(--gold); }
.peak-cell .move { display: block; font-size: 25px; letter-spacing: -.025em; }
.peak-cell b, .peak-cell time { margin-top: 6px; display: block; color: #9cb6be; font-size: 8px; font-weight: 850; letter-spacing: .05em; }
.peak-cell time { color: #64808a; }
.terminal-cell { min-width: 230px; background: linear-gradient(110deg, rgba(110, 189, 255, .07), rgba(110, 189, 255, .015)); box-shadow: inset 2px 0 0 rgba(110, 189, 255, .34); }
.terminal-cell > small:first-child { margin: 0 0 8px; color: #7d9eaa; }
.terminal-cell .move { display: block; font-size: 25px; letter-spacing: -.025em; }
.terminal-cell b { margin-top: 7px; display: block; color: #819da6; font-size: 8px; font-weight: 850; letter-spacing: .05em; }
.duration-cell { min-width: 220px; white-space: normal; }
.duration-cell > strong { color: #dcecf0; font-size: 17px; }
.duration-cell--unavailable { min-width: 178px; }
.duration-status { display: inline-flex; align-items: center; gap: 8px; }
.duration-status i { width: 7px; height: 7px; flex: 0 0 auto; border: 1px solid rgba(244, 201, 105, .62); border-radius: 50%; background: rgba(244, 201, 105, .12); box-shadow: 0 0 13px rgba(244, 201, 105, .12); }
.duration-status strong { color: #c7d9de; font-size: 15px; line-height: 1.1; }
.duration-method-link { width: fit-content; margin-top: 7px; display: block; color: #6f8a93; font-size: 8px; font-weight: 850; letter-spacing: .055em; line-height: 1.3; text-decoration: none; text-transform: uppercase; }
.duration-method-link:hover, .duration-method-link:focus-visible { color: var(--gold); }
.duration-method-link:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
.trade-state { display: inline-flex; align-items: center; gap: 7px; color: #77939c; font-size: 9px; font-weight: 900; letter-spacing: .07em; }
.trade-state i { width: 6px; height: 6px; border-radius: 50%; background: #78929b; }
.trade-state.active { color: #ff91a4; }
.trade-state.active i { background: var(--red); }
.trade-state.invalidated { color: var(--gold); }
.trade-state.invalidated i { background: var(--gold); }
.trade-state.closed, .trade-state.session_end_snapshot { color: var(--cyan); }
.trade-state.closed i, .trade-state.session_end_snapshot i { background: var(--cyan); }
.integrity-notice { border: 1px solid rgba(244, 201, 105, .24); border-top: 0; color: #76919a; background: rgba(244, 201, 105, .045); font-size: 8px; line-height: 1.5; }
.integrity-notice summary { min-height: 56px; padding: 13px 16px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; cursor: pointer; list-style-position: inside; }
.integrity-notice summary::marker { color: var(--gold); }
.integrity-notice strong { color: var(--gold); font-size: 7px; letter-spacing: .1em; }
.correction-list { border-top: 1px solid rgba(244, 201, 105, .16); }
.correction-list article { min-height: 64px; padding: 13px 16px; display: grid; grid-template-columns: minmax(150px, .55fr) minmax(280px, 1.45fr) auto; align-items: center; gap: 18px; border-top: 1px solid rgba(244, 201, 105, .1); }
.correction-list article:first-child { border-top: 0; }
.correction-list article div span { margin-top: 4px; display: block; color: #526f79; font-size: 7px; }
.correction-list article p { margin: 0; color: #87a1a9; }
.correction-list article time { color: #66818a; white-space: nowrap; }
.empty-ledger { padding: 52px 22px; border: 1px solid var(--line-blue); color: #849fa8; background: rgba(6, 18, 25, .86); text-align: center; }
.empty-ledger strong { color: #d8e9ed; font-size: 15px; }
.empty-ledger p { margin: 9px 0 0; font-size: 10px; }
.ledger-disclosure { min-height: 60px; padding: 13px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; border: 1px solid var(--line-blue); border-top: 0; color: #5d7983; background: rgba(5, 16, 23, .78); font-size: 8px; line-height: 1.5; }
.ledger-disclosure strong { color: var(--gold); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.ledger-disclosure time { white-space: nowrap; }
.measurement-methodology { padding: 22px 24px; border: 1px solid rgba(88, 241, 209, .2); border-top: 0; background: linear-gradient(120deg, rgba(88, 241, 209, .055), rgba(5, 16, 23, .92)); }
.measurement-methodology h3 { margin: 9px 0 12px; color: #dcecf0; font-size: 19px; letter-spacing: -.02em; }
.measurement-methodology p { max-width: 1180px; margin: 8px 0 0; color: #77939c; font-size: 10px; line-height: 1.65; }
.measurement-methodology p strong { color: #b8d1d7; }

.evidence-gallery { margin-top: 78px; }
.evidence-heading { margin-bottom: 24px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 560px); align-items: end; gap: 48px; }
.evidence-heading h2 { margin: 10px 0 0; font-size: clamp(34px, 4.6vw, 62px); line-height: .96; letter-spacing: -.052em; }
.evidence-heading > p { margin: 0; padding-left: 20px; border-left: 1px solid rgba(88, 241, 209, .24); color: #78949e; font-size: 11px; line-height: 1.7; }
.evidence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.evidence-grid--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.evidence-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(110, 189, 255, .2); background: linear-gradient(145deg, rgba(8, 25, 33, .98), rgba(3, 11, 17, .99)); box-shadow: 0 24px 78px rgba(0, 0, 0, .3), inset 0 0 70px rgba(88, 241, 209, .018); transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.evidence-card::before { position: absolute; z-index: 3; top: -1px; left: -1px; width: 118px; height: 2px; content: ""; background: linear-gradient(90deg, var(--cyan), transparent); box-shadow: 0 0 20px rgba(88, 241, 209, .45); pointer-events: none; }
.evidence-card:hover { border-color: rgba(88, 241, 209, .36); box-shadow: 0 30px 90px rgba(0, 0, 0, .36), 0 0 54px rgba(88, 241, 209, .045); transform: translateY(-3px); }
.evidence-visual { position: relative; width: 100%; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid rgba(110, 189, 255, .16); background: radial-gradient(circle at 70% 30%, rgba(88, 241, 209, .07), transparent 40%), #010508; }
.evidence-visual--portrait { aspect-ratio: 720 / 1488; }
.evidence-visual::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, transparent 62%, rgba(1, 7, 10, .52)); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .018); }
.evidence-visual img { width: 100%; height: 100%; display: block; object-fit: contain; background: #010508; }
.evidence-rank { position: absolute; z-index: 2; top: 13px; left: 13px; min-height: 30px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(88, 241, 209, .27); color: #a8c6c6; background: rgba(2, 11, 15, .86); font-size: 7px; font-weight: 950; letter-spacing: .12em; backdrop-filter: blur(10px); }
.evidence-rank i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px rgba(88, 241, 209, .72); }
.evidence-rank b { color: var(--gold); }
.evidence-card-body { padding: 22px; }
.evidence-card-body > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.evidence-card-body > header > div:first-child > span, .evidence-percent span { display: block; color: #607d87; font-size: 7px; font-weight: 950; letter-spacing: .13em; }
.evidence-card-body h3 { margin: 8px 0 0; display: flex; align-items: center; gap: 10px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1; letter-spacing: -.035em; }
.evidence-card-body h3 .side { min-height: 27px; font-size: 8px; }
.evidence-percent { flex: 0 0 auto; text-align: right; }
.evidence-percent strong { display: block; margin-top: 7px; color: var(--cyan); font-size: clamp(25px, 2.7vw, 36px); font-weight: 950; line-height: .92; letter-spacing: -.035em; font-variant-numeric: tabular-nums; text-shadow: 0 0 24px rgba(88, 241, 209, .22); }
.evidence-metrics { margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr 1.25fr; border: 1px solid rgba(110, 189, 255, .14); background: linear-gradient(100deg, rgba(110, 189, 255, .025), rgba(88, 241, 209, .035)); }
.evidence-metrics div { min-width: 0; min-height: 84px; padding: 14px; display: flex; flex-direction: column; justify-content: center; gap: 8px; border-left: 1px solid rgba(110, 189, 255, .11); }
.evidence-metrics div:first-child { border-left: 0; }
.evidence-metrics dt { color: #5f7c86; font-size: 7px; font-weight: 950; letter-spacing: .12em; }
.evidence-metrics dd { margin: 0; overflow: hidden; color: #dceef1; font-size: 17px; font-weight: 900; letter-spacing: -.01em; text-overflow: ellipsis; white-space: nowrap; font-variant-numeric: tabular-nums; }
.evidence-metrics .native { background: rgba(88, 241, 209, .035); }
.evidence-metrics .native dd { color: var(--cyan); font-size: clamp(19px, 2vw, 27px); font-weight: 950; line-height: 1; text-shadow: 0 0 20px rgba(88, 241, 209, .18); }
.evidence-card-body > footer { margin-top: 17px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.evidence-card-body > footer > span { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.evidence-card-body > footer small { color: var(--gold); font-size: 7px; font-weight: 950; letter-spacing: .11em; }
.evidence-card-body > footer time { overflow: hidden; color: #738f99; font-size: 9px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.evidence-timestamp-link { min-width: 184px; min-height: 50px; padding: 7px 12px; display: inline-flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid rgba(88, 241, 209, .24); color: #8faab3; background: rgba(88, 241, 209, .045); text-decoration: none; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.evidence-timestamp-link span { font-size: 7px; font-weight: 950; letter-spacing: .1em; }
.evidence-timestamp-link strong { color: var(--cyan); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.evidence-timestamp-link:hover { border-color: rgba(88, 241, 209, .52); color: var(--ink); background: rgba(88, 241, 209, .075); }
.evidence-disclosure { margin: 14px 0 0; padding-left: 13px; border-left: 2px solid rgba(244, 201, 105, .38); color: #57747e; font-size: 8px; line-height: 1.55; }
.closing-cta { margin-top: 74px; padding: 35px 38px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border: 1px solid rgba(88, 241, 209, .2); background: linear-gradient(100deg, rgba(88, 241, 209, .11), rgba(5, 18, 25, .94) 58%, rgba(110, 189, 255, .07)); }
.closing-cta span { color: var(--gold); font-size: 8px; font-weight: 950; letter-spacing: .15em; }
.closing-cta h2 { max-width: 800px; margin: 9px 0 0; font-size: clamp(25px, 3vw, 40px); line-height: 1.08; letter-spacing: -.04em; }
.closing-cta .button { flex: 0 0 auto; }

.site-footer { width: min(1480px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 42px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; border-top: 1px solid var(--line); color: #506c76; }
.footer-brand .raptor-mark { width: 38px; transform: scale(.8); transform-origin: left center; }
.footer-brand strong { font-size: 10px; }
.footer-brand small { font-size: 6px; }
.site-footer p { max-width: 660px; margin: 0; font-size: 8px; line-height: 1.55; }
.site-footer > div:last-child { display: flex; gap: 18px; }
.site-footer > div:last-child a { color: #64818b; font-size: 7px; font-weight: 850; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-footer > div:last-child a:hover { color: var(--cyan); }
@media (max-width: 1250px) {
  .archive-hero { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .filter-panel { grid-template-columns: repeat(4, 1fr); }
  .filter-panel .wide { grid-column: span 2; }
  .filter-submit { align-self: end; }
}

@media (max-width: 1020px) {
  .archive-hero { grid-template-columns: 1fr; padding-top: 22px; }
  .hero-copy { max-width: 760px; }
  .live-board { min-height: 0; }
  .session-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .session-hero { grid-template-columns: 1fr; }
  .device-card { max-width: 520px; }
  .watch-grid { grid-template-columns: 1fr; }
  .proof-panel { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }
  .proof-panel .section-kicker, .proof-panel h2, .proof-panel > p { grid-column: 1; }
  .proof-panel ol { grid-column: 2; grid-row: 1 / span 3; }
  .evidence-heading { grid-template-columns: 1fr; gap: 18px; }
  .evidence-heading > p { max-width: 720px; }
  .evidence-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  .site-header, .page-shell, .site-footer { width: min(100% - 22px, 1480px); }
  .site-header { min-height: 74px; }
  .site-header nav { gap: 12px; }
  .site-header nav .nav-home, .site-header nav .nav-archive { display: none; }
  .site-header nav .nav-live, .site-header nav .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
  .brand strong { font-size: 11px; }
  .brand small { font-size: 6px; }
  .raptor-mark { width: 42px; transform: scale(.88); transform-origin: left center; }
  .page-shell { padding-top: 34px; }
  .hero-copy h1 { font-size: clamp(48px, 16vw, 72px); }
  .verification-strip { display: grid; }
  .open-trade { min-height: 104px; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; column-gap: 14px; row-gap: 10px; padding-block: 14px; }
  .open-trade > span:first-child { grid-column: 1; grid-row: 1; }
  .open-trade > span:nth-child(2) { grid-column: 1; grid-row: 2; display: block; }
  .open-trade .move { grid-column: 2; grid-row: 2; text-align: right; }
  .open-trade time { grid-column: 2; grid-row: 1; justify-self: end; align-self: start; margin: 0; }
  .open-trade span:nth-child(2) b { font-size: 15px; }
  .open-trade .move b { font-size: 22px; }
  .event-watch { grid-template-columns: 1fr; gap: 5px; }
  .alert-cta-bar, .closing-cta { align-items: stretch; flex-direction: column; }
  .filter-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 13px; }
  .filter-panel .wide { grid-column: 1 / -1; }
  .session-grid { grid-template-columns: 1fr; }
  .methodology { padding: 27px 19px; }
  .method-grid { grid-template-columns: 1fr; }
  .news-ribbon { grid-template-columns: 1fr; }
  .proof-panel { display: block; }
  .proof-panel ol { margin-top: 20px; }
  .ledger-key { display: none; }
  .table-scroll { overflow: visible; border: 0; }
  table, tbody, tr, td { display: block; }
  thead { display: none; }
  table { min-width: 0; background: transparent; }
  tbody { display: grid; gap: 10px; }
  tbody tr { padding: 7px 14px 12px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border: 1px solid rgba(110, 189, 255, .2); background: linear-gradient(145deg, rgba(7, 24, 32, .96), rgba(4, 15, 21, .96)); box-shadow: 0 14px 34px rgba(0, 0, 0, .2); }
  td { position: relative; grid-column: span 3; height: auto; min-height: 68px; padding: 29px 5px 11px; border-top: 1px solid rgba(110, 189, 255, .09); white-space: normal; }
  td::before { position: absolute; top: 9px; left: 5px; content: attr(data-label); color: #69858f; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  td:nth-child(-n+2) { border-top: 0; }
  td:nth-child(3), td:nth-child(4) { grid-column: span 3; min-height: 58px; }
  td:nth-child(5), td:nth-child(6), td:nth-child(7), td:nth-child(8) { grid-column: span 6; min-width: 0; }
  td:nth-child(5) { min-height: 124px; padding: 34px 13px 15px; background: linear-gradient(110deg, rgba(88, 241, 209, .11), rgba(88, 241, 209, .025)); }
  td:nth-child(5) .move { font-size: 29px; }
  td:nth-child(6), td:nth-child(7) { min-height: 98px; padding-inline: 13px; background: rgba(88, 241, 209, .025); }
  td:nth-child(6) { min-height: 118px; padding: 34px 13px 15px; }
  td:nth-child(6) .move { font-size: 29px; }
  td.duration-cell--unavailable { min-height: 78px; padding-top: 31px; background: linear-gradient(110deg, rgba(244, 201, 105, .035), rgba(110, 189, 255, .018)); }
  td:nth-child(8) { min-height: 58px; }
  td .price { font-size: 15px; }
  td small { font-size: 8px; line-height: 1.35; }
  .ledger-disclosure { grid-template-columns: 1fr; }
  .ledger-disclosure time { white-space: normal; }
  .measurement-methodology { padding: 20px 16px; }
  .evidence-gallery { margin-top: 58px; }
  .evidence-card-body > footer { align-items: stretch; flex-direction: column; }
  .evidence-timestamp-link { width: 100%; min-height: 52px; }
  .integrity-notice summary { grid-template-columns: 1fr; gap: 5px; }
  .correction-list article { grid-template-columns: 1fr; gap: 8px; }
  .correction-list article time { white-space: normal; }
  .session-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .session-meta span { min-width: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p { grid-column: auto; grid-row: auto; }
  .site-footer > div:last-child { flex-wrap: wrap; }
}

@media (max-width: 460px) {
  .site-header nav { gap: 7px; }
  .site-header nav .nav-live { min-height: 44px; padding-inline: 9px; font-size: 7px; }
  .site-header nav .nav-cta { display: none; }
  .brand { min-width: 0; gap: 8px; }
  .brand strong { font-size: 10px; letter-spacing: .15em; white-space: nowrap; }
  .brand small { display: none; }
  .archive-hero { min-height: 0; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(40px, 12vw, 47px); line-height: .92; letter-spacing: -.05em; overflow-wrap: break-word; }
  .hero-copy > p { max-width: 100%; overflow-wrap: break-word; }
  .hero-actions .button { width: 100%; }
  .live-board { padding: 15px; }
  .live-board h2 { font-size: 22px; }
  .live-board > header p { font-size: 10px; }
  .activity-totals > div { min-height: 62px; padding: 10px 8px 8px; }
  .activity-totals span { font-size: 7px; letter-spacing: .08em; }
  .activity-totals strong { font-size: 26px; }
  .activity-totals > small { padding-inline: 7px; font-size: 6px; }
  .state-pill { max-width: 100%; font-size: 8px; white-space: normal; }
  .open-list, .board-empty { min-height: 148px; }
  .open-trade { min-height: 110px; gap: 9px 12px; padding-inline: 2px; }
  .open-trade strong { font-size: 16px; }
  .open-trade small { font-size: 8px; }
  .open-trade span:nth-child(2) b { font-size: 14px; }
  .open-trade .move b { font-size: 20px; }
  .card-media { aspect-ratio: 2 / 1; }
  .card-body { padding: 18px; }
  .card-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-stats span { min-height: 72px; padding-inline: 8px; }
  .card-stats small { font-size: 7px; white-space: normal; }
  .card-stats strong { font-size: 18px; }
  .card-stats span:last-child strong { font-size: 20px; }
  .live-board > header { align-items: flex-start; }
  .filter-panel { grid-template-columns: 1fr; }
  .filter-panel .wide { grid-column: auto; }
  .filter-submit { min-height: 48px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .session-hero h1 { font-size: 39px; }
  .eyebrow-row { align-items: flex-start; flex-direction: column; }
  .news-items a { min-width: 220px; }
  tbody tr { grid-template-columns: repeat(6, minmax(0, 1fr)); padding-inline: 10px; }
  td { padding-inline: 4px; }
  td::before { left: 4px; }
  td:nth-child(4) .price, td:nth-child(5) .price { font-size: 14px; }
  td:nth-child(6) .move { font-size: 18px; }
  .evidence-heading h2 { font-size: clamp(33px, 10vw, 44px); overflow-wrap: break-word; }
  .evidence-heading > p { padding-left: 14px; }
  .evidence-card-body { padding: 17px; }
  .evidence-card-body > header { gap: 10px; }
  .evidence-card-body h3 { align-items: flex-start; flex-direction: column; font-size: 27px; }
  .evidence-percent strong { font-size: 28px; }
  .evidence-metrics { grid-template-columns: 1fr 1fr; }
  .evidence-metrics div { min-height: 76px; padding: 12px; }
  .evidence-metrics .native { grid-column: 1 / -1; min-height: 78px; border-top: 1px solid rgba(110, 189, 255, .11); border-left: 0; }
  .evidence-metrics .native dd { font-size: 25px; }
  .evidence-card-body > footer time { white-space: normal; }
  .evidence-timestamp-link { min-width: 0; }
  .closing-cta { padding: 28px 21px; }
}

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