:root {
  color-scheme: dark;
  --bg: #061123;
  --bg-soft: #091a32;
  --surface: #0d203c;
  --line: rgba(164, 204, 235, 0.17);
  --line-strong: rgba(164, 204, 235, 0.30);
  --text: #edf8ff;
  --muted: #9aafc3;
  --cyan: #22c7f2;
  --cyan-soft: rgba(34, 199, 242, 0.13);
  --lime: #a3ee68;
  --violet: #a991ff;
  --amber: #f5c66a;
  --red: #ff6d72;
  --header-h: 68px;
  --nav-w: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { 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;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.market-bar {
  height: var(--header-h); position: fixed; inset: 0 0 auto 0; z-index: 30;
  display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr); align-items: center;
  padding: 0 24px; background: rgba(7,16,18,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .18em; width: fit-content; }
.brand strong { color: var(--cyan); font-weight: 650; }
.brand-mark { width: 28px; height: 31px; position: relative; display: inline-block; filter: drop-shadow(0 0 8px rgba(24,232,209,.25)); }
.brand-mark i { position: absolute; display: block; background: var(--cyan); clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); }
.brand-mark i:first-child { inset: 0; opacity: .92; }
.brand-mark i:nth-child(2) { inset: 5px; background: var(--bg); }
.brand-mark i:nth-child(3) { width: 7px; height: 8px; left: 11px; top: 12px; }
.market-ticker { display: flex; height: 100%; border-left: 1px solid var(--line); }
.ticker-item {
  min-width: 170px; border: 0; border-right: 1px solid var(--line); background: transparent; padding: 0 20px;
  display: grid; grid-template-columns: auto auto; align-content: center; gap: 2px 13px; text-align: left; cursor: pointer;
  transition: background .2s ease;
}
.ticker-item:hover { background: var(--cyan-soft); }
.ticker-item span { font-size: 10px; color: var(--muted); letter-spacing: .13em; }
.ticker-item strong { grid-row: 2; font-size: 15px; font-weight: 580; font-variant-numeric: tabular-nums; }
.ticker-item em { grid-column: 2; grid-row: 2; font-size: 11px; align-self: center; font-style: normal; }
.positive { color: var(--lime) !important; }
.negative { color: var(--red) !important; }
.header-actions { justify-self: end; display: flex; gap: 18px; align-items: center; }
.network-chip { min-height:34px; border:1px solid var(--line); background:transparent; color:var(--muted); padding:0 10px; font-size:9px; letter-spacing:.07em; cursor:pointer; white-space:nowrap; }
.network-chip b{font-weight:600;color:var(--text)}.header-fee-link{display:inline-flex;align-items:center;min-height:34px;color:var(--cyan);font-size:10px;letter-spacing:.07em;white-space:nowrap}.header-fee-link:hover{color:var(--text)}
.network-chip i { display:inline-block; width:6px; height:6px; margin-right:7px; border-radius:50%; background:var(--amber); box-shadow:0 0 8px var(--amber); }.network-chip.operational i { background:var(--lime); box-shadow:0 0 8px var(--lime); }.network-chip.partial i { background:var(--amber); box-shadow:0 0 8px var(--amber); }.network-chip.degraded i { background:var(--red); box-shadow:0 0 8px var(--red); }
.language-toggle { min-width: 54px; height: 34px; padding: 0 9px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 9px; letter-spacing: .08em; cursor: pointer; transition: .2s; }
.language-toggle:hover { color: var(--cyan); border-color: var(--cyan); }
.data-state { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; display: flex; gap: 7px; align-items: center; }
.data-state i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.icon-button { width: 34px; height: 34px; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; }
.icon-button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.app-shell { padding-top: var(--header-h); }
.side-nav {
  position: fixed; top: var(--header-h); bottom: 0; left: 0; width: var(--nav-w); z-index: 20;
  border-right: 1px solid var(--line); background: rgba(7,16,18,.88); display: flex; align-items: center; flex-direction: column; padding-top: 32px; gap: 10px;
}
.nav-item {
  width: 62px; height: 58px; border: 0; background: transparent; color: var(--muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 9px; letter-spacing: .08em; cursor: pointer; position: relative; transition: color .2s ease;
}
.nav-item svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.nav-item:hover, .nav-item.active { color: var(--text); }
.nav-item.active::before { content:""; position: absolute; left: -10px; height: 28px; width: 2px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
main { margin-left: var(--nav-w); overflow: hidden; }
.workspace, .briefing-section, .upcoming-section { padding: 48px clamp(28px,4vw,70px); border-bottom: 1px solid var(--line); }
.content-page { min-height: calc(100svh - var(--header-h)); padding: 82px clamp(28px, 7vw, 120px) 96px; border-bottom: 1px solid var(--line); }
.content-page .section-heading { max-width: 1120px; margin: 0 auto 30px; }
.content-page .stories, .content-page .timeline, .content-page .section-note { max-width: 1120px; margin-left: auto; margin-right: auto; }
.workspace { min-height: calc(100svh - var(--header-h)); }
.home .workspace > .workspace-heading, .home .workspace > .radar-layout { display:none; }
.front-edition { max-width:1120px; margin:0 auto; padding:clamp(28px,5vw,72px) 0 42px; }
.edition-head { display:flex; align-items:end; justify-content:space-between; gap:30px; padding-bottom:44px; border-bottom:1px solid var(--line); }
.edition-rhythm{display:flex;align-items:center;gap:12px;padding:14px 0;border-bottom:1px solid var(--line);color:var(--muted);font-size:12px}.edition-rhythm b{color:var(--cyan);font-size:13px;letter-spacing:.08em}.edition-rhythm span+span{padding-left:12px;border-left:1px solid var(--line)}.edition-rhythm a{margin-left:auto;color:var(--cyan);font-size:11px;text-transform:uppercase;letter-spacing:.1em}.edition-rhythm i{font-style:normal}
.edition-head h1 { font-size:clamp(48px,6vw,82px); }.edition-head > div > p:last-child { max-width:390px; margin:18px 0 0; color:var(--muted); font-size:16px; line-height:1.55; }
.edition-recap-link,.edition-lead > a,.edition-pulse > a { color:var(--cyan); font-size:11px; text-transform:uppercase; letter-spacing:.1em; white-space:nowrap; }.edition-recap-link i,.edition-item i { font-style:normal; }
.edition-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(270px,.85fr) minmax(210px,.55fr); border-bottom:1px solid var(--line); }
.edition-lead,.edition-brief,.edition-pulse { padding:36px 30px 38px 0; }.edition-brief,.edition-pulse { border-left:1px solid var(--line); padding-left:30px; }
.edition-lead h2 { font-size:clamp(29px,3.4vw,46px); line-height:1; letter-spacing:-.045em; margin:0 0 17px; font-weight:500; }.edition-lead h2 span{ color:#afc4d7; }.edition-lead > p:not(.eyebrow){max-width:450px;margin:0 0 22px;color:#b9cad5;font-size:15px;line-height:1.65}
.edition-brief .eyebrow,.edition-pulse .eyebrow{ margin-bottom:16px }.edition-item{display:grid;grid-template-columns:28px 1fr 14px;gap:8px;padding:14px 0;border-top:1px solid var(--line);align-items:center}.edition-item:last-child{border-bottom:1px solid var(--line)}.edition-item>span{color:var(--cyan);font-size:10px}.edition-item strong{display:block;font-size:14px;font-weight:600}.edition-item small{display:block;margin-top:4px;color:var(--muted);font-size:12px;line-height:1.35}.edition-item:hover strong{color:var(--cyan)}
.edition-pulse>div{display:flex;justify-content:space-between;gap:12px;padding:14px 0;border-top:1px solid var(--line)}.edition-pulse>div span{color:var(--muted);font-size:12px}.edition-pulse>div strong{font-size:13px;text-align:right}.edition-pulse>div strong.operational{color:var(--lime)}.edition-pulse>div strong.partial{color:var(--amber)}.edition-pulse>div strong.degraded{color:var(--red)}.edition-pulse small{display:block;margin:3px 0 20px;color:var(--muted);font-size:11px;line-height:1.45}
.edition-why{max-width:520px;margin:25px 0 27px;padding:2px 0 2px 17px;border-left:2px solid var(--cyan)}.edition-why>span{display:block;margin-bottom:8px;color:var(--cyan);font-size:10px;font-weight:650;letter-spacing:.14em}.edition-why p{margin:0!important;color:#b8cadb!important;font-size:14px!important;line-height:1.55!important}
.side-nav a[href="./cronos-app.html"] { display:none; }
@media(max-width:760px){.front-edition{padding:32px 18px 38px}.edition-head{display:block;padding-bottom:31px}.edition-head h1{font-size:48px}.edition-head>div>p:last-child{font-size:14px;margin:15px 0 20px}.edition-rhythm{gap:8px;font-size:11px}.edition-rhythm span+span{padding-left:8px}.edition-rhythm a{font-size:10px}.edition-grid{display:block}.edition-lead,.edition-brief,.edition-pulse{padding:29px 0;border-left:0}.edition-brief,.edition-pulse{border-top:1px solid var(--line)}.edition-lead h2{font-size:32px}.edition-pulse{padding-bottom:5px}.edition-recap-link{display:inline-flex;min-height:44px;align-items:center}.home .workspace{min-height:auto;padding:0;border-bottom:1px solid var(--line)}.nav-item{width:20%}}
.workspace-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; }
.eyebrow { color: var(--cyan); font-size: 10px; letter-spacing: .2em; margin: 0 0 14px; font-weight: 600; }

@media (max-width: 640px) {
  .eyebrow, .page-status, .data-state, .ticker-item span { font-size: 10px; }
  .section-note { font-size: 13px; line-height: 1.6; }
  .timeline article > div > span, .story-meta, .why > span, .action-needed > span { font-size: 10px; }
}
h1 { font-size: clamp(38px,4vw,68px); line-height: .93; letter-spacing: -.055em; margin: 0; font-weight: 500; }

@media (max-width: 640px) {
  .recap-article .source-grade { width: auto; max-width: 100%; display: inline-flex; line-height: 1.35; white-space: normal; }
  .recap-article .source-grade.grade-discussion { font-size: 9px; letter-spacing: .09em; }
}
h1 span { color: #afc4d7; }
.chain-summary { display: flex; align-items: center; gap: 13px; padding-bottom: 5px; }
.chain-summary div { display: flex; flex-direction: column; gap: 4px; }
.chain-summary strong { font-size: 13px; font-weight: 560; }
.chain-summary span:not(.status-orb) { color: var(--muted); font-size: 11px; }
.chain-summary button { border: 0; background: none; color: var(--cyan); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; margin-left: 12px; cursor: pointer; }
.status-orb { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; position: relative; background: rgba(163,238,104,.1); }
.status-orb i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 13px var(--lime); }
.status-orb::before { content:""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(163,238,104,.35); animation: statusPulse 2.2s infinite; }
.status-orb.partial i { background: var(--amber); box-shadow: 0 0 13px var(--amber); }.status-orb.partial::before { border-color: rgba(245,198,106,.35); }
.status-orb.degraded i { background: var(--red); box-shadow: 0 0 13px var(--red); }.status-orb.degraded::before { border-color: rgba(255,109,114,.35); }
.status-orb.incident i { background: var(--red); box-shadow: 0 0 13px var(--red); }
@keyframes statusPulse { 0%{transform:scale(.7);opacity:1} 100%{transform:scale(1.45);opacity:0} }

.radar-layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; min-height: 525px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.radar-stage { min-width: 0; position: relative; border-right: 1px solid var(--line); }
.radar-toolbar { height: 55px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); }
.mode-switcher { display: flex; gap: 6px; }
.mode-switcher button { color: var(--muted); background: transparent; border: 0; border-radius: 20px; padding: 7px 12px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; cursor:pointer; }
.mode-switcher button.active { color: var(--bg); background: var(--cyan); }
.radar-meta { display: flex; align-items: center; gap: 18px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.radar-meta span { color: var(--text); display:flex; gap:7px; align-items:center; }
.radar-meta i { width:5px;height:5px;border-radius:50%;background:var(--cyan);box-shadow:0 0 9px var(--cyan); }
.radar-meta em { color:var(--muted);font-style:normal; }
.radar-canvas { height: 420px; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(24,232,209,.055), transparent 55%); }
.radar-rings { position:absolute; inset:0; display:grid; place-items:center; pointer-events:none; }
.radar-rings i { position:absolute; width:180px;height:180px;border:1px solid rgba(24,232,209,.1);border-radius:50%; }
.radar-rings i:nth-child(2){width:330px;height:330px;opacity:.7}.radar-rings i:nth-child(3){width:500px;height:500px;opacity:.45}
.radar-rings::before,.radar-rings::after{content:"";position:absolute;background:var(--line);opacity:.45}.radar-rings::before{width:100%;height:1px}.radar-rings::after{height:100%;width:1px}
.center-pulse { position:absolute; left:50%;top:50%;transform:translate(-50%,-50%);width:86px;height:86px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;background:rgba(7,16,18,.9);border:1px solid rgba(24,232,209,.32);box-shadow:0 0 50px rgba(24,232,209,.12);z-index:2; }
.center-pulse::before { content:"";position:absolute;inset:-9px;border:1px solid rgba(24,232,209,.14);border-radius:50%;animation:slowPulse 3s infinite; }
.center-pulse span{font-size:9px;letter-spacing:.17em;color:var(--muted)}.center-pulse strong{font-size:14px;letter-spacing:.08em;color:var(--cyan)}
@keyframes slowPulse{50%{transform:scale(1.08);opacity:.45}}
.bubble-layer { position:absolute;inset:0; }
.bubble {
  position:absolute; width:var(--size);height:var(--size);left:var(--x);top:var(--y);transform:translate(-50%,-50%);border-radius:50%;border:1px solid var(--bubble-line);
  background:var(--bubble-fill); display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;cursor:pointer;box-shadow:0 0 28px var(--bubble-glow);transition:width .7s var(--ease),height .7s var(--ease),transform .25s var(--ease),filter .25s ease;animation:float var(--float-time) ease-in-out infinite alternate;z-index:3;
}
.bubble:hover,.bubble.selected{transform:translate(-50%,-50%) scale(1.1);filter:brightness(1.3);z-index:5}.bubble strong{font-size:clamp(8px,1vw,11px);font-weight:600}.bubble span{font-size:7px;color:rgba(237,248,247,.72);text-transform:uppercase;letter-spacing:.08em}.bubble i{display:none;font-size:7px;color:var(--muted);font-style:normal;letter-spacing:.07em}.bubble.no-live-data{opacity:.48;border-style:dashed;box-shadow:none}.bubble.no-live-data i{display:block}.bubble::before{content:"";position:absolute;inset:4px;border-radius:50%;border:1px solid rgba(255,255,255,.06)}
.bubble.defi{--bubble-line:rgba(34,199,242,.62);--bubble-fill:radial-gradient(circle at 32% 25%,rgba(34,199,242,.3),rgba(8,27,55,.84));--bubble-glow:rgba(34,199,242,.16)}
.bubble.infra{--bubble-line:rgba(34,199,242,.48);--bubble-fill:radial-gradient(circle at 32% 25%,rgba(34,199,242,.23),rgba(8,27,55,.84));--bubble-glow:rgba(34,199,242,.11)}
.bubble.community{--bubble-line:rgba(34,199,242,.38);--bubble-fill:radial-gradient(circle at 32% 25%,rgba(34,199,242,.18),rgba(8,27,55,.86));--bubble-glow:rgba(34,199,242,.08)}
.bubble.gaming{--bubble-line:rgba(34,199,242,.30);--bubble-fill:radial-gradient(circle at 32% 25%,rgba(34,199,242,.14),rgba(8,27,55,.88));--bubble-glow:rgba(34,199,242,.06)}
@keyframes float{from{margin-top:-4px}to{margin-top:4px}}
.radar-legend { height:49px;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:center;gap:25px;color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.08em; }
.radar-legend span{display:flex;align-items:center;gap:7px}.radar-legend i{width:6px;height:6px;border-radius:50%;background:var(--cyan)!important}.radar-legend .infra{opacity:.76}.radar-legend .community{opacity:.58}.radar-legend .gaming{opacity:.40}
.activity-rail{padding:22px;position:relative}.rail-header{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:9px;letter-spacing:.13em}.rail-header button{border:1px solid var(--line);background:none;color:var(--muted);font-size:8px;padding:5px 8px;border-radius:10px}.primary-volume{margin-top:42px;display:flex;flex-direction:column;gap:7px}.primary-volume span{font-size:9px;letter-spacing:.12em;color:var(--muted)}.primary-volume strong{font-size:38px;font-weight:450;letter-spacing:-.05em}.primary-volume em{font-size:10px;font-style:normal}.sparkline{height:70px;margin:25px 0}.sparkline svg{width:100%;height:100%;overflow:visible}.sparkline path.line{stroke:var(--cyan);stroke-width:1.5;fill:none;filter:drop-shadow(0 0 5px rgba(24,232,209,.4))}.sparkline path.area{fill:url(#areaGradient)}
.metric-list{margin:0;border-top:1px solid var(--line)}.metric-list div{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line);padding:15px 0}.metric-list dt{color:var(--muted);font-size:10px}.metric-list dd{margin:0;font-variant-numeric:tabular-nums;font-size:11px}.metric-list em{color:var(--lime);font-size:8px;font-style:normal;margin-left:4px}.source-note{font-size:8px;color:var(--muted);line-height:1.45;margin:17px 0}.text-button{border:0;background:none;padding:0;color:var(--text);font-size:9px;text-transform:uppercase;letter-spacing:.09em;cursor:pointer}.text-button span{color:var(--cyan)}

.briefing-section,.upcoming-section{padding-top:85px;padding-bottom:95px}.section-heading{display:flex;justify-content:space-between;align-items:end;margin-bottom:45px}.section-heading h2{font-size:clamp(32px,4vw,54px);font-weight:480;letter-spacing:-.045em;margin:0}.outline-button{background:none;border:1px solid var(--line-strong);padding:10px 15px;font-size:9px;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:.2s}.outline-button:hover{border-color:var(--cyan);color:var(--cyan)}
.stories{border-top:1px solid var(--line)}.story{display:grid;grid-template-columns:60px minmax(0,1fr) 42px;gap:24px;border-bottom:1px solid var(--line);padding:34px 0;transition:background .25s ease}.story:hover{background:linear-gradient(90deg,transparent,var(--cyan-soft),transparent)}.story-index{color:var(--muted);font-size:11px;padding-top:4px}.story-copy{max-width:830px}.story-meta{display:flex;gap:12px;align-items:center;margin-bottom:12px}.story-meta span{font-size:8px;letter-spacing:.1em;text-transform:uppercase;border:1px solid;padding:4px 7px;border-radius:10px}.verified,.official{color:var(--cyan);border-color:rgba(24,232,209,.35)!important}.community-tag{color:var(--amber);border-color:rgba(245,198,106,.35)!important}.story-meta time{font-size:9px;color:var(--muted)}.story h3{font-size:22px;line-height:1.2;font-weight:520;letter-spacing:-.025em;margin:0 0 8px}.story-copy>p{color:var(--muted);margin:0;line-height:1.5}.why{display:grid;grid-template-columns:105px 1fr;gap:18px;margin-top:19px;padding-top:17px;border-top:1px solid var(--line)}.why span{font-size:8px;color:var(--cyan);letter-spacing:.12em}.why p{margin:0;font-size:11px;color:#b3c4c5;line-height:1.5}.story-action{width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:none;color:var(--muted);cursor:pointer;transition:.25s}.story:hover .story-action{border-color:var(--cyan);color:var(--cyan);transform:rotate(45deg)}
.poll{display:grid;grid-template-columns:repeat(4,1fr);gap:9px;margin-top:22px}.poll button{border:1px solid var(--line);background:rgba(255,255,255,.015);padding:10px;text-align:left;font-size:9px;color:var(--muted);cursor:pointer;display:grid;grid-template-columns:1fr auto;gap:7px}.poll button i{grid-row:2;grid-column:1/3;height:2px;background:var(--line);position:relative}.poll button i span{display:block;height:100%;background:var(--cyan)}.poll button em{font-style:normal}.poll button.voted{color:var(--text);border-color:rgba(24,232,209,.35)}
.timeline{border-top:1px solid var(--line)}.timeline article{display:grid;grid-template-columns:90px 1fr 42px;align-items:center;gap:30px;padding:27px 0;border-bottom:1px solid var(--line)}.timeline time{display:flex;align-items:baseline;gap:6px;color:var(--muted);font-size:9px}.timeline time strong{font-size:28px;color:var(--text);font-weight:450}.timeline div span{color:var(--cyan);font-size:8px;letter-spacing:.13em}.timeline h3{font-size:17px;margin:7px 0 4px;font-weight:520}.timeline p{margin:0;color:var(--muted);font-size:10px}.timeline button{border:0;background:none;color:var(--muted);font-size:16px;cursor:pointer}.timeline article:hover button{color:var(--cyan)}
footer{padding:45px clamp(28px,4vw,70px);display:flex;align-items:center;justify-content:space-between;color:var(--muted);font-size:10px}footer p{margin:0}.footer-brand{opacity:.65}footer>div:last-child{display:flex;gap:20px}footer a:hover{color:var(--cyan)}
footer button{border:0;background:none;color:inherit;padding:0;cursor:pointer;font-size:inherit}footer button:hover{color:var(--cyan)}

.page-status { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; display: inline-flex; align-items: center; gap: 8px; padding-bottom: 8px; }
.page-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 9px var(--amber); }
.cronosapp-section{padding-bottom:110px}.app-intro{max-width:680px;margin:-3px auto 55px!important;font-size:16px!important}.app-monitor{max-width:1120px;margin:0 auto;border-top:1px solid var(--line);border-bottom:1px solid var(--line);display:grid;grid-template-columns:1fr 1fr}.app-monitor>section{padding:42px 44px 45px}.monitor-network{border-right:1px solid var(--line)}.monitor-kicker{display:flex;align-items:center;gap:9px;color:var(--cyan);font-size:9px;letter-spacing:.13em}.live-dot,.pending-dot{width:6px;height:6px;border-radius:50%;background:var(--lime);box-shadow:0 0 8px var(--lime)}.live-dot.partial{background:var(--amber);box-shadow:0 0 8px var(--amber)}.live-dot.degraded{background:var(--red);box-shadow:0 0 8px var(--red)}.pending-dot{background:var(--amber);box-shadow:0 0 8px var(--amber)}.app-monitor h2{max-width:420px;margin:20px 0 13px;font-size:clamp(28px,3.2vw,43px);line-height:1.03;letter-spacing:-.045em;font-weight:480}.app-monitor>section>p{max-width:450px;margin:0;color:var(--muted);font-size:14px;line-height:1.58}.app-metrics{margin:31px 0 26px;border-top:1px solid var(--line)}.app-metrics div,.app-pending-list div{display:flex;justify-content:space-between;gap:18px;padding:14px 0;border-bottom:1px solid var(--line)}.app-metrics dt,.app-pending-list span{color:var(--muted);font-size:11px}.app-metrics dd,.app-pending-list strong{margin:0;color:var(--text);font-size:12px;font-weight:530;text-align:right}.app-pending-list{margin:31px 0 26px;border-top:1px solid var(--line)}.app-pending-list strong{color:var(--amber);font-size:10px;letter-spacing:.04em}.monitor-link{display:inline-flex;min-height:38px;align-items:center;color:var(--cyan);font-size:10px;letter-spacing:.08em;text-transform:uppercase}.muted-link{color:var(--muted)}.monitor-link:hover{color:var(--text)}.attribution-note{max-width:1120px;margin:0 auto;padding:27px 0;display:grid;grid-template-columns:180px minmax(0,600px);gap:34px;border-bottom:1px solid var(--line)}.attribution-note span{color:var(--cyan);font-size:9px;letter-spacing:.13em}.attribution-note p{margin:0;color:var(--muted);font-size:13px;line-height:1.6}
.recaps-intro { max-width: 690px; margin: 0 auto 58px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.recap-empty { max-width: 1120px; margin: 0 auto; min-height: 285px; display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; align-items: center; gap: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.recap-number { align-self: start; padding-top: 32px; color: var(--cyan); font-size: 11px; letter-spacing: .12em; }
.recap-empty h2 { margin: 0 0 12px; font-size: clamp(27px, 3vw, 42px); font-weight: 480; letter-spacing: -.04em; }
.recap-empty p:not(.eyebrow) { margin: 0; max-width: 570px; line-height: 1.55; color: var(--muted); }
.recap-rules { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid var(--line); }
.recap-rules div { min-height: 190px; padding: 30px 28px 28px 0; border-right: 1px solid var(--line); }
.recap-rules div + div { padding-left: 28px; }.recap-rules div:last-child { border-right: 0; }
.recap-rules span { color: var(--cyan); font-size: 10px; letter-spacing: .12em; }.recap-rules h3 { margin: 26px 0 8px; font-size: 16px; font-weight: 550; }.recap-rules p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.spaces-directory{max-width:1120px;margin:0 auto;padding:20px 0 94px}.spaces-heading{display:flex;justify-content:space-between;align-items:end;padding:0 0 52px;border-bottom:1px solid var(--line)}.spaces-heading h1{margin:0;font-size:clamp(48px,6vw,82px);line-height:.9}.spaces-heading>div>p:last-child{max-width:510px;margin:23px 0 0;color:var(--muted);font-size:14px;line-height:1.55}.spaces-heading>span{color:var(--muted);font-size:9px;letter-spacing:.12em}.space-card-row{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 220px;gap:0;border-bottom:1px solid var(--line)}.space-card{min-height:340px;padding:34px 34px 32px 0;border:0;background:transparent;text-align:left;color:var(--text);cursor:pointer;position:relative}.space-card:hover h2{color:var(--cyan)}.space-card-top{display:flex;align-items:center;gap:15px}.space-card time{color:var(--muted);font-size:10px;letter-spacing:.1em}.space-card h2{max-width:680px;margin:27px 0 0;font-size:clamp(30px,4vw,53px);line-height:1.02;font-weight:480;letter-spacing:-.045em;transition:color .2s}.space-card h2 span{color:var(--muted)}.space-card p{max-width:600px;margin:15px 0 22px;color:var(--muted);font-size:14px;line-height:1.5}.space-card p b{font-weight:590;color:var(--text)}.space-host{display:flex;align-items:center;gap:10px;margin-top:24px}.host-avatar{position:relative;display:grid;place-items:center;width:34px;height:34px;border-radius:50%;overflow:hidden;background:var(--cyan-soft);border:1px solid rgba(34,199,242,.38);color:var(--cyan);font-size:9px;font-weight:700}.host-avatar img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.host-avatar i{font-style:normal}.space-host>span:last-child{display:flex;flex-direction:column;gap:3px}.space-host em{color:var(--muted);font-size:8px;font-style:normal;letter-spacing:.13em}.space-host strong{font-size:11px;color:var(--text);letter-spacing:.02em}.space-host small{color:var(--muted);font-size:10px;font-weight:450}.space-listeners{margin-left:12px;padding-left:14px;border-left:1px solid var(--line);color:var(--cyan)!important;font-size:8px!important;letter-spacing:.11em!important}.space-read{display:block;margin-top:25px;font-size:10px;color:var(--cyan);letter-spacing:.1em;text-transform:uppercase}.space-read i{font-style:normal;font-size:16px;margin-left:7px}.space-source-link{align-self:end;justify-self:end;margin-bottom:34px;color:var(--muted);font-size:10px;letter-spacing:.08em;text-transform:uppercase}.space-source-link:hover{color:var(--cyan)}.back-to-spaces{display:inline-flex;align-items:center;min-height:40px;margin:0 0 32px;padding:0;border:0;background:transparent;color:var(--muted);font-size:10px;letter-spacing:.1em;text-transform:uppercase;cursor:pointer}.back-to-spaces:hover{color:var(--cyan)}

.recap-hero{max-width:1120px;margin:0 auto;padding-bottom:54px;border-bottom:1px solid var(--line);display:grid;grid-template-columns:minmax(0,1fr) 240px;gap:60px;align-items:end}.recap-hero h1{margin:0;font-size:clamp(45px,6vw,82px);line-height:.9}.recap-dek{max-width:710px;margin:25px 0 0;color:#b4c5c6;font-size:16px;line-height:1.55}.recap-meta{display:flex;flex-direction:column;gap:14px;padding-bottom:6px;font-size:10px;color:var(--muted)}.recap-meta a{color:var(--cyan);text-transform:uppercase;letter-spacing:.08em}.recap-share{display:inline-flex;align-items:center;gap:7px;align-self:flex-start;min-height:38px;padding:0 11px;border:1px solid rgba(34,199,242,.38);background:rgba(34,199,242,.06);color:var(--cyan);font:inherit;font-size:9px;letter-spacing:.09em;text-transform:uppercase;cursor:pointer;transition:border-color .2s,background .2s,color .2s}.recap-share:hover{border-color:var(--cyan);background:var(--cyan);color:var(--bg)}.recap-share span{font-size:14px;line-height:1}.source-grade{width:max-content;margin:0 0 16px;padding:5px 7px;border:1px solid var(--line);font-size:8px;letter-spacing:.11em}.grade-confirmed{color:var(--lime);border-color:rgba(163,238,104,.3)}.grade-discussion{color:var(--cyan);border-color:rgba(24,232,209,.3)}.grade-opinion{color:var(--amber);border-color:rgba(245,198,106,.3)}.grade-project{color:var(--violet);border-color:rgba(169,145,255,.3)}.grade-unconfirmed{color:var(--red);border-color:rgba(255,109,114,.3)}
.editorial-layout{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:170px minmax(0,720px);gap:70px}.recap-aside{position:sticky;top:105px;align-self:start;margin-top:50px;display:flex;flex-direction:column;gap:12px;font-size:10px;color:var(--muted)}.recap-aside p{margin:0 0 7px;color:var(--cyan);letter-spacing:.12em;font-size:9px}.recap-aside a:hover{color:var(--text)}.recap-article{padding:50px 0 90px}.recap-article section{padding:52px 0;border-bottom:1px solid var(--line)}.recap-article h2{max-width:680px;margin:0 0 20px;font-size:clamp(26px,3.2vw,42px);line-height:1.04;font-weight:480;letter-spacing:-.045em}.recap-article p{max-width:650px;margin:0 0 18px;color:#c1d0d5;font-size:16px;line-height:1.78}.recap-quickscan{display:grid;grid-template-columns:168px 1fr;gap:32px;padding-top:8px!important}.quickscan-heading span,.editorial-note span,.why-box span{color:var(--cyan);font-size:9px;letter-spacing:.13em}.quickscan-heading p{margin:10px 0 0;font-size:13px;line-height:1.5;color:var(--muted)}.quickscan-points{border-top:1px solid var(--line)}.quickscan-points>div{position:relative;padding:16px 0 17px 47px;border-bottom:1px solid var(--line)}.quickscan-points b{position:absolute;left:0;top:17px;color:var(--cyan);font-size:10px;letter-spacing:.08em}.quickscan-points h3{margin:0 0 5px;color:var(--text);font-size:14px;font-weight:570;letter-spacing:-.01em}.quickscan-points p{margin:0;max-width:540px;font-size:13px;line-height:1.52;color:#aebfc7}.editorial-note{padding:28px 0 30px;border-bottom:1px solid var(--line)}.editorial-note p{margin:10px 0 0;color:var(--text);font-size:18px;line-height:1.55}.why-box{max-width:650px;margin-top:30px;padding:22px;border-left:2px solid var(--cyan);background:var(--cyan-soft)}.why-box p{margin:9px 0 0;font-size:14px;line-height:1.65}.recap-sources{display:flex;flex-direction:column}.recap-sources a{display:flex;gap:18px;padding:15px 0;border-bottom:1px solid var(--line);color:var(--text);font-size:13px;line-height:1.45}.recap-sources a:hover{color:var(--cyan)}.recap-sources a span{min-width:92px;color:var(--cyan);font-size:8px;letter-spacing:.1em}

.drawer-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.42);z-index:39;opacity:0;pointer-events:none;transition:.3s}.drawer-backdrop.open{opacity:1;pointer-events:auto}.detail-drawer{position:fixed;right:0;top:0;bottom:0;width:min(440px,92vw);z-index:40;background:#0a1517;border-left:1px solid var(--line-strong);padding:75px 40px 40px;transform:translateX(100%);transition:transform .45s var(--ease);overflow:auto}.detail-drawer.open{transform:none}.drawer-close{position:absolute;top:20px;right:22px;width:34px;height:34px;border:1px solid var(--line);border-radius:50%;background:none;font-size:20px;cursor:pointer}.drawer-eyebrow{color:var(--cyan);font-size:9px;letter-spacing:.16em}.drawer-title{font-size:38px;line-height:1.05;letter-spacing:-.045em;font-weight:480;margin:13px 0}.drawer-sub{color:var(--muted);line-height:1.55}.drawer-stat{margin:34px 0;border-top:1px solid var(--line)}.drawer-stat div{display:flex;justify-content:space-between;padding:16px 0;border-bottom:1px solid var(--line)}.drawer-stat span{color:var(--muted);font-size:10px}.drawer-stat strong{font-size:11px}.drawer-section{margin-top:30px}.drawer-section h4{font-size:9px;color:var(--cyan);letter-spacing:.14em}.drawer-section p{color:#b3c4c5;line-height:1.6;font-size:12px}.drawer-link{display:inline-block;margin-top:20px;color:var(--cyan);font-size:10px;text-transform:uppercase;letter-spacing:.1em}.toast{position:fixed;left:50%;bottom:28px;z-index:45;transform:translate(-50%,18px);padding:11px 16px;background:var(--text);color:var(--bg);font-size:10px;letter-spacing:.05em;opacity:0;pointer-events:none;transition:.3s}.toast.show{opacity:1;transform:translate(-50%,0)}
.reveal{opacity:0;transform:translateY(15px);transition:opacity .65s var(--ease),transform .65s var(--ease)}.reveal.visible{opacity:1;transform:none}.delay-1{transition-delay:.12s}

body.light{color-scheme:light;--bg:#eef6ff;--bg-soft:#e5f0fb;--surface:#fff;--line:rgba(20,62,100,.15);--line-strong:rgba(20,62,100,.28);--text:#0b1c32;--muted:#526f8d;--cyan:#008fc4;--cyan-soft:rgba(0,143,196,.1)}
body.light .market-bar,body.light .side-nav{background:rgba(238,244,243,.9)}body.light .brand-mark i:nth-child(2){background:var(--bg)}body.light .detail-drawer{background:#f6fbfa}body.light .center-pulse{background:rgba(238,244,243,.94)}
body.light .recap-story{background:linear-gradient(145deg,#f6fbff 0%,#eaf4fc 55%,#e4f0fa 100%);box-shadow:inset 0 1px 0 rgba(20,62,100,.12),inset 0 -1px 0 rgba(20,62,100,.12)}
body.light .recap-story .recap-article p,body.light .recap-story .quickscan-points p{color:#29455f!important}
body.light .recap-story h1,body.light .recap-story h2,body.light .recap-story h3,body.light .recap-story .editorial-note p,body.light .recap-story .recap-sources a{color:#102a43!important}
body.light .recap-story .recap-dek,body.light .recap-story .recap-meta,body.light .recap-story .recap-aside,body.light .recap-story .quickscan-heading p{color:#46627d!important}
body.light .recap-story .recap-aside a:hover{color:#102a43!important}
body.light .recap-story .why-box{background:rgba(0,143,196,.08)}
body.light .recap-story .source-grade{background:rgba(255,255,255,.55)}

@media (max-width: 1050px){
  .market-bar{grid-template-columns:190px 1fr auto}.ticker-item{min-width:140px;padding:0 13px}.ticker-ratio{display:none}.radar-layout{grid-template-columns:minmax(0,1fr) 230px}.workspace-heading{align-items:flex-start}.chain-summary{padding-top:12px}
}
@media (max-width: 760px){
  :root{--header-h:108px;--nav-w:0px}.market-bar{height:var(--header-h);padding:0 16px;grid-template-columns:1fr auto;grid-template-rows:50px 58px}.brand{grid-column:1}.header-actions{grid-column:2;gap:8px}.language-toggle{min-width:50px;height:32px;padding:0 6px;font-size:8px}.data-state{display:none}.market-ticker{grid-row:2;grid-column:1/3;margin:0 -16px;border-top:1px solid var(--line);border-left:0;overflow:hidden}.ticker-item{min-width:50%;flex:1}.ticker-ratio{display:none}.side-nav{top:auto;bottom:0;right:0;width:100%;height:62px;flex-direction:row;padding:0;justify-content:space-around;border-right:0;border-top:1px solid var(--line);backdrop-filter:blur(18px)}.nav-item{height:56px;width:25%}.nav-item.active::before{left:auto;top:-1px;height:2px;width:32px}.app-shell{padding-top:var(--header-h)}main{margin-left:0;padding-bottom:62px}.workspace,.briefing-section,.upcoming-section{padding:32px 18px}.workspace{min-height:auto}.workspace-heading{display:block;margin-bottom:25px}.chain-summary{margin-top:25px;border-top:1px solid var(--line);padding-top:17px}.chain-summary button{margin-left:auto}.radar-layout{display:block}.radar-stage{border-right:0}.radar-toolbar{padding:0 10px}.radar-meta em{display:none}.radar-canvas{height:390px}.activity-rail{border-top:1px solid var(--line)}.primary-volume{margin-top:25px}.sparkline{height:58px}.briefing-section,.upcoming-section{padding-top:65px;padding-bottom:65px}.section-heading{align-items:flex-start}.outline-button{margin-top:4px}.story{grid-template-columns:28px minmax(0,1fr);gap:8px}.story-action{display:none}.story h3{font-size:18px}.why{grid-template-columns:1fr;gap:7px}.poll{grid-template-columns:1fr 1fr}.timeline article{grid-template-columns:62px 1fr;gap:15px}.timeline article>button{display:none}footer{display:block;padding:35px 18px 80px}footer p{margin:16px 0}h1{font-size:42px}.radar-legend{gap:13px;overflow:hidden}.radar-legend span{font-size:7px}
}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition-duration:.01ms!important}}

/* Audit improvements: transparency, accessibility and mobile hierarchy */
.skip-link{position:fixed;left:12px;top:-60px;z-index:100;background:var(--text);color:var(--bg);padding:12px 16px;transition:top .2s}.skip-link:focus{top:12px}
.icon-button{width:44px;height:44px}.poll button{min-height:44px;font-size:10px}.timeline-arrow{color:var(--muted);text-align:center}
.sparkline-empty{height:100%;display:flex;align-items:center;justify-content:center;border-top:1px dashed var(--line);border-bottom:1px dashed var(--line);color:var(--muted);font-size:10px}
button:focus-visible,a:focus-visible,[tabindex]:focus-visible{outline:2px solid var(--cyan);outline-offset:3px}
.daily-readout{display:flex;align-items:center;gap:8px;margin:17px 0 0;color:var(--muted);font-size:11px}.daily-readout strong{color:var(--text);font-weight:560}.daily-readout>span:first-of-type{color:var(--cyan)}
.catch-up-button{display:inline-flex;align-items:center;gap:7px;min-height:34px;margin-left:7px;padding:0 11px;border:1px solid rgba(34,199,242,.35);background:var(--cyan-soft);color:var(--cyan);font-size:9px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;cursor:pointer;transition:border-color .2s ease,background .2s ease,color .2s ease}.catch-up-button i{font-style:normal;font-size:13px;line-height:1}.catch-up-button:hover{border-color:var(--cyan);background:var(--cyan);color:var(--bg)}
.today-line{display:flex;align-items:center;gap:8px;margin:13px 0 0;color:var(--muted);font-size:10px}.today-line-orb{width:6px;height:6px;border-radius:50%;background:var(--amber);box-shadow:0 0 8px var(--amber)}.today-line.operational .today-line-orb{background:var(--lime);box-shadow:0 0 8px var(--lime)}.today-line.partial .today-line-orb{background:var(--amber);box-shadow:0 0 8px var(--amber)}.today-line.degraded .today-line-orb{background:var(--red);box-shadow:0 0 8px var(--red)}
.radar-toolbar{height:auto;min-height:55px;gap:14px}
.category-filter{display:flex;gap:3px;align-items:center}.category-filter button{border:0;background:transparent;color:var(--muted);padding:6px 7px;font-size:8px;letter-spacing:.06em;text-transform:uppercase;cursor:pointer}.category-filter button:hover,.category-filter button.active{color:var(--cyan)}
.view-toggle{border:1px solid var(--line);background:transparent;color:var(--muted);padding:8px 11px;min-height:34px;font-size:9px;text-transform:uppercase;letter-spacing:.09em;cursor:pointer;white-space:nowrap}.view-toggle:hover,.view-toggle[aria-pressed="true"]{border-color:var(--cyan);color:var(--cyan)}
.radar-explainer{min-height:38px;padding:9px 22px;display:flex;align-items:center;justify-content:space-between;gap:16px;color:var(--muted);font-size:10px;letter-spacing:.02em;border-bottom:1px solid var(--line)}.radar-explainer span:last-child{color:#c1d1df}
.radar-canvas{height:386px}.bubble strong{font-size:clamp(9px,1vw,11px)}.bubble span{font-size:8px;color:rgba(237,248,247,.72)}
.radar-list{display:none;min-height:386px;padding:8px 22px}.radar-list.open{display:block}.radar-canvas.list-hidden{display:none}.radar-list button{width:100%;display:grid;grid-template-columns:minmax(110px,1fr) minmax(120px,1.4fr) auto;gap:18px;align-items:center;min-height:62px;border:0;border-bottom:1px solid var(--line);background:transparent;text-align:left;cursor:pointer}.radar-list button:hover{background:var(--cyan-soft)}.radar-list strong{font-size:13px}.radar-list span{color:var(--muted);font-size:11px}.radar-list em{font-style:normal;color:var(--cyan);font-size:10px;text-align:right}.radar-quality{display:block;margin-top:4px;color:#8ea7ad;font-size:8px;letter-spacing:.1em}.radar-quality.live{color:var(--cyan)}
.radar-empty-state{display:grid;place-items:center;min-height:180px;margin:0;padding:30px;color:var(--muted);font-size:12px;line-height:1.5;text-align:center}
.metric-list dt{font-size:11px}.metric-list em{font-size:9px}.source-note{font-size:11px;line-height:1.55}.text-button{padding:6px 0;min-height:38px;font-size:10px}
.briefing-section,.upcoming-section{scroll-margin-top:calc(var(--header-h) + 14px)}.outline-button{display:inline-flex;align-items:center}.section-note{margin:-28px 0 30px;color:var(--muted);font-size:11px;line-height:1.5}
.story{grid-template-columns:60px minmax(0,1fr) 48px}.story-meta{flex-wrap:wrap}.story-meta span{font-size:9px;padding:5px 8px}.story-meta time{font-size:10px}.why,.action-needed{display:grid;grid-template-columns:125px 1fr;gap:18px;margin-top:19px;padding-top:17px;border-top:1px solid var(--line)}.why span,.action-needed span{font-size:9px;color:var(--cyan);letter-spacing:.12em}.why p{font-size:12px}.action-needed strong{font-size:12px;font-weight:520}.story-action{width:44px;height:44px;display:flex;align-items:center;justify-content:center}.story-action span{display:none}.story-action-disabled{opacity:.45}
.detail-drawer{width:min(460px,92vw);padding:82px 40px 48px}.drawer-close{top:22px;width:44px;height:44px;font-size:21px}.drawer-eyebrow{font-size:10px}.drawer-sub{font-size:13px}.drawer-stat div{gap:20px}.drawer-stat span{font-size:11px}.drawer-stat strong{text-align:right}.drawer-section h4{font-size:10px}.drawer-section p{font-size:13px;color:#b9c9ca}.drawer-link{display:inline-flex;align-items:center;min-height:44px;margin-top:16px;font-size:11px}

@media (max-width:1050px){.ticker-ratio{display:grid}}
@media (max-width:760px){
  .ticker-item{min-width:33.333%;width:33.333%;padding:0 7px;gap:2px 4px}.ticker-item span{font-size:9px}.ticker-item strong{font-size:12px}.ticker-item em{font-size:9px}.ticker-ratio{display:grid}
  .side-nav{height:66px;padding-bottom:env(safe-area-inset-bottom);justify-content:stretch}.nav-item{flex:1;width:auto;min-width:0;height:60px;font-size:9px;letter-spacing:.035em}.nav-item svg{width:18px;height:18px}.nav-item.active::before{width:26px}.app-shell main{padding-bottom:calc(66px + env(safe-area-inset-bottom))}
  .workspace,.briefing-section,.upcoming-section{padding:28px 18px}.workspace-heading{margin-bottom:22px}.workspace-heading h1{font-size:36px;line-height:.96}.daily-readout{flex-wrap:wrap;margin-top:12px;row-gap:9px}.catch-up-button{width:100%;justify-content:center;margin:1px 0 0;min-height:42px;font-size:10px}.chain-summary{margin-top:20px;padding-top:16px}.chain-summary button{min-height:44px}
  .radar-toolbar{padding:8px 10px;flex-wrap:wrap}.mode-switcher{order:1;display:grid;grid-template-columns:repeat(3,1fr);width:100%;flex:none;gap:4px}.mode-switcher button{padding:8px 4px;min-height:38px;font-size:10px}.view-toggle{order:2;min-height:38px;width:100%}.radar-meta{order:4;width:100%;justify-content:space-between;padding:4px 3px;font-size:10px}.radar-meta em{display:block}.radar-explainer{padding:12px 10px;font-size:12px;line-height:1.45}.radar-explainer span:last-child{font-size:11px}.radar-canvas{height:390px}.radar-list{min-height:390px;padding:4px 10px}.radar-list button{grid-template-columns:1fr auto;gap:5px 12px;min-height:62px}.radar-list span{grid-row:2}.radar-list em{grid-column:2;grid-row:1/3}
  .radar-legend{display:none}.metric-list dt{font-size:12px}.metric-list dd{font-size:12px}.source-note{font-size:12px}.text-button{font-size:11px}.story-meta span{font-size:9px}.story-meta time{font-size:10px}.why span,.action-needed span{font-size:10px}.why p,.action-needed strong{font-size:13px}
  .primary-volume>span{display:none}.primary-volume strong::before{content:"VOLUME DEX · 24H";display:block;margin-bottom:7px;color:var(--muted);font-size:9px;font-weight:450;letter-spacing:.12em}
  .cronosapp-section{padding-bottom:68px}.app-intro{margin-bottom:36px!important;font-size:14px!important}.app-monitor{display:block}.app-monitor>section{padding:31px 0}.monitor-network{border-right:0;border-bottom:1px solid var(--line)}.app-monitor h2{font-size:31px}.attribution-note{display:block;padding:24px 0}.attribution-note p{margin-top:12px;font-size:12px}
  .briefing-section,.upcoming-section{padding-top:60px;padding-bottom:70px}.section-heading{gap:16px;margin-bottom:34px}.outline-button{min-height:44px}.section-note{margin:-20px 0 25px}.story{grid-template-columns:28px minmax(0,1fr)}.story-action{grid-column:2;width:auto;height:44px;border-radius:0;margin-top:16px;gap:7px;justify-content:flex-start;padding:0 14px}.story-action span{display:inline}.story:hover .story-action{transform:none}.story-copy>p{font-size:13px}.why,.action-needed{grid-template-columns:1fr;gap:7px}
  .detail-drawer{width:100vw;padding:84px 24px 50px;border-left:0}.drawer-close{top:max(18px,env(safe-area-inset-top));right:18px}.drawer-title{font-size:36px}.radar-legend span{font-size:8px}
  .content-page{padding-top:56px;padding-bottom:72px}.content-page .section-heading{margin-bottom:26px}.recaps-intro{font-size:14px;margin-bottom:35px}.recap-empty{grid-template-columns:1fr;gap:12px;padding:28px 0 32px;min-height:0}.recap-number{padding:0}.recap-empty .outline-button{width:max-content;margin-top:10px}.recap-rules{grid-template-columns:1fr}.recap-rules div,.recap-rules div + div{padding:25px 0;border-right:0;border-bottom:1px solid var(--line);min-height:0}.recap-rules div:last-child{border-bottom:0}.recap-rules h3{margin-top:18px}
  .recap-hero{display:block;padding-bottom:35px}.recap-hero h1{font-size:50px}.recap-dek{font-size:14px;margin-top:19px}.recap-meta{margin-top:28px}.editorial-layout{display:block}.recap-aside{position:static;margin:25px 0;padding-bottom:18px;border-bottom:1px solid var(--line);flex-direction:row;flex-wrap:wrap;gap:12px 16px}.recap-aside p{width:100%;margin:0}.recap-article{padding:28px 0 60px}.recap-article section{padding:38px 0}.recap-article p{font-size:15px;line-height:1.72}.recap-quickscan{display:block;padding-top:8px!important}.quickscan-heading{margin-bottom:20px}.quickscan-heading p{font-size:13px}.quickscan-points>div{padding:15px 0 16px 42px}.quickscan-points p{font-size:13px}.editorial-note p{font-size:16px}.recap-sources a{display:block;line-height:1.5}.recap-sources a span{display:block;margin-bottom:5px}
  .spaces-directory{padding:12px 0 65px}.spaces-heading{display:block;padding-bottom:34px}.spaces-heading h1{font-size:53px}.spaces-heading>span{display:block;margin-top:24px}.space-card-row{display:block}.space-card{min-height:0;padding:27px 0}.space-card-top{align-items:flex-start;flex-direction:column;gap:10px}.space-card h2{font-size:33px}.space-listeners{margin-left:auto;padding-left:10px}.space-source-link{display:inline-block;margin:0 0 27px}.back-to-spaces{margin-bottom:24px}
}

@media (max-width:760px){
  .header-actions{gap:6px}.network-chip{min-height:32px;padding:0 7px;font-size:8px}.network-chip span,.header-fee-link{display:none}
  .category-filter{order:3;width:100%;overflow:auto;padding:2px 0}.category-filter button{padding:8px 7px}.radar-meta{order:4}
}

/* Phone readability pass: Pulse is a daily read, not a dense trading terminal. */
@media (min-width:761px){
  body{font-size:18px}
  .front-edition{max-width:1280px;padding:clamp(30px,3.2vw,54px) 0 32px}
  .edition-head{padding-bottom:34px}
  .edition-lead,.edition-brief,.edition-pulse{padding-top:29px;padding-bottom:31px}
  .brand{font-size:14px}
  .ticker-item span{font-size:13px}.ticker-item strong{font-size:18px}.ticker-item em{font-size:14px}
  .network-chip,.language-toggle{font-size:13px;min-height:42px}.language-toggle{height:42px}
  .nav-item{font-size:13px}
  .eyebrow,.page-status{font-size:13px}
  .edition-rhythm{font-size:15px}.edition-rhythm b{font-size:16px}
  .edition-lead>p:not(.eyebrow){font-size:19px}.edition-item strong{font-size:18px}.edition-item small{font-size:15px}
  .edition-pulse>div span{font-size:15px}.edition-pulse>div strong{font-size:16px}.edition-pulse small{font-size:14px}
  .chain-summary strong{font-size:17px}.chain-summary span:not(.status-orb){font-size:15px}.chain-summary button{font-size:13px}
  .radar-layout{grid-template-columns:minmax(0,1fr) 310px;min-height:570px}
  .radar-canvas{height:455px}
  .activity-rail{padding:28px}
  .mode-switcher button,.radar-meta{font-size:14px}
  .view-toggle{font-size:13px;min-height:42px}
  .radar-explainer{font-size:15px}.radar-explainer span:last-child{font-size:14px}
  .bubble strong{font-size:clamp(12px,1vw,15px)}.bubble span,.bubble i{font-size:11px}
  .rail-header,.primary-volume span{font-size:14px}.primary-volume em{font-size:15px}
  .metric-list dt,.metric-list dd{font-size:15px}.metric-list em{font-size:12px}.source-note{font-size:14px}.text-button{font-size:13px}
  .outline-button{font-size:13px}.section-note{font-size:15px}
  .story-index{font-size:14px}.story-meta span{font-size:12px}.story-meta time{font-size:13px}
  .story h3{font-size:27px}.story-copy>p{font-size:18px;line-height:1.62}.why span,.action-needed span{font-size:12px}.why p,.action-needed strong{font-size:16px;line-height:1.62}
  .timeline time{font-size:13px}.timeline div span{font-size:12px}.timeline h3{font-size:21px}.timeline p{font-size:15px}
  footer{font-size:14px}
  .monitor-kicker,.attribution-note span{font-size:11px}.app-monitor>section>p{font-size:16px}.app-metrics dt,.app-pending-list span{font-size:13px}.app-metrics dd,.app-pending-list strong{font-size:14px}.monitor-link{font-size:11px}.attribution-note p{font-size:15px}
  .recap-number,.recap-rules span{font-size:12px}.recap-empty p:not(.eyebrow),.recap-rules p{font-size:14px}.recap-rules h3{font-size:18px}
  .spaces-heading>div>p:last-child,.space-card p{font-size:16px}.spaces-heading>span,.space-card time{font-size:11px}.space-host em,.space-listeners{font-size:10px!important}.space-host strong{font-size:13px}.space-host small,.space-read,.space-source-link,.back-to-spaces{font-size:12px}
  .recap-meta,.recap-aside{font-size:12px}.recap-aside p,.source-grade,.quickscan-heading span,.editorial-note span,.why-box span{font-size:10px}.recap-share{font-size:11px}.recap-article p{font-size:17px}.quickscan-heading p,.quickscan-points p{font-size:14px}.quickscan-points h3{font-size:16px}.recap-sources a{font-size:14px}.recap-sources a span{font-size:10px}
  .drawer-eyebrow,.drawer-section h4{font-size:11px}.drawer-sub,.drawer-stat span,.drawer-stat strong,.drawer-section p{font-size:14px}.drawer-link{font-size:12px}
}

@media (min-width:761px){.radar-legend{display:none}}

@media (max-width:760px){
  body{font-size:16px;letter-spacing:-.012em}
  .brand{font-size:13px}
  .ticker-item span{font-size:11px;letter-spacing:.09em}
  .ticker-item strong{font-size:14px}
  .ticker-item em{font-size:10px}
  .network-chip{min-height:36px;font-size:10px;padding:0 9px}
  .language-toggle{height:36px;min-width:54px;font-size:10px}
  .nav-item{font-size:10px;letter-spacing:.02em}
  .eyebrow,.page-status{font-size:11px;letter-spacing:.14em}
  .edition-rhythm{font-size:13px}
  .edition-rhythm b{font-size:13px}
  .edition-rhythm a,.edition-recap-link,.edition-lead>a,.edition-pulse>a{font-size:11px}
  .edition-item strong{font-size:16px}
  .edition-item small,.edition-pulse>div span{font-size:13px;line-height:1.45}
  .edition-pulse>div strong{font-size:14px}
  .edition-pulse small{font-size:12px}
  .mode-switcher button,.view-toggle,.category-filter button{font-size:11px}
  .radar-meta{font-size:11px}
  .radar-explainer{font-size:13px;line-height:1.5}
  .radar-explainer span:last-child{font-size:12px}
  .center-pulse span{font-size:10px}
  .center-pulse strong{font-size:16px}
  .bubble strong{font-size:clamp(10px,2.5vw,12px)}
  .bubble span,.bubble i{font-size:9px}
  .radar-list strong{font-size:15px}
  .radar-list span{font-size:13px}
  .radar-list em{font-size:11px}
  .radar-quality{font-size:9px}
  .primary-volume strong::before{font-size:11px}
  .metric-list dt,.metric-list dd{font-size:13px}
  .metric-list em,.source-note{font-size:11px}
  .text-button{font-size:12px}
  .section-note{font-size:13px;line-height:1.6}
  .story-meta span{font-size:10px}
  .story-meta time{font-size:11px}
  .story h3{font-size:21px;line-height:1.18}
  .story-copy>p,.why p,.action-needed strong{font-size:15px;line-height:1.58}
  .why span,.action-needed span{font-size:11px}
  .outline-button,.catch-up-button{font-size:11px}
  .daily-readout,.today-line{font-size:13px}
  .drawer-eyebrow,.drawer-section h4{font-size:11px}
  .drawer-sub,.drawer-stat span,.drawer-stat strong,.drawer-section p{font-size:14px}
  .drawer-link{font-size:12px}
  .recaps-intro,.recap-dek{font-size:16px}
  .recap-meta,.recap-aside{font-size:12px}
  .recap-article p{font-size:17px;line-height:1.7}
  .quickscan-heading p,.quickscan-points p{font-size:15px}
  .quickscan-points h3{font-size:16px}
  .source-grade,.quickscan-heading span,.editorial-note span,.why-box span,.recap-sources a span{font-size:10px}
  .space-host em,.space-listeners{font-size:10px!important}
  .space-host strong{font-size:13px}
  .space-host small,.space-source-link,.space-read,.back-to-spaces{font-size:12px}
}

/* Daily edition: orient first, then let the lead signal do the work. */
@media (min-width:761px){
  .edition-head{padding-bottom:30px}
  .edition-head h1{font-size:clamp(50px,4.2vw,74px);line-height:.96}
  .edition-head>div>p:last-child{max-width:480px;font-size:18px;line-height:1.48}
  .edition-grid{grid-template-columns:minmax(0,1.15fr) minmax(310px,.82fr) minmax(250px,.58fr)}
  .edition-lead h2{font-size:clamp(33px,3.1vw,48px)}
  .edition-why>span{font-size:12px}.edition-why p{font-size:16px!important;line-height:1.58!important}
}

@media (max-width:760px){
  .edition-why{margin:22px 0 25px;padding-left:14px}
  .edition-why>span{font-size:11px}
  .edition-why p{font-size:15px!important;line-height:1.58!important}
}

/* Reading comfort: a quieter, more even canvas for daily reading. */
:root{
  --bg:#0b1a30;
  --bg-soft:#102744;
  --surface:#142e4d;
  --line:rgba(190,210,229,.22);
  --line-strong:rgba(190,210,229,.34);
  --text:#e7eef6;
  --muted:#b4c3d2;
  --cyan:#35c7eb;
  --cyan-soft:rgba(53,199,235,.10);
}
body{line-height:1.5;background:linear-gradient(135deg,#0d1e36 0%,#0b1a30 58%,#0a192d 100%)}
.market-bar,.side-nav{background:rgba(11,25,39,.94)}
.noise{opacity:.018}
h1 span,.edition-lead h2 span{color:#c0d0e1}
.edition-head>div>p:last-child,.edition-lead>p:not(.eyebrow),.edition-why p{color:#c4d1df!important}
.edition-item small,.edition-pulse>div span,.edition-pulse small{color:#bccbda}
.edition-head,.edition-grid,.edition-rhythm,.edition-item,.edition-pulse>div{border-color:rgba(190,210,229,.20)}
.edition-why{border-left-color:rgba(53,199,235,.82)}
.edition-recap-link,.edition-lead>a,.edition-pulse>a{color:#4cd3f2}
.ticker-item:hover,.story:hover,.radar-list button:hover{background:rgba(53,199,235,.075)}
.monitor-source{margin:0 0 14px!important;color:var(--muted);font-size:12px!important;line-height:1.55}.monitor-source a{color:var(--cyan);white-space:nowrap}.monitor-source a:hover{color:var(--text)}

/* Home: the signal starts closer to the header and reads like a useful briefing. */
@media (min-width:761px){
  .home .workspace{padding-top:0}
  .front-edition{max-width:1280px;padding:clamp(28px,3vw,46px) 0 34px}
  .edition-head{align-items:center;min-height:220px;padding-bottom:28px}
  .edition-head h1{font-size:clamp(48px,3.75vw,68px);line-height:.98}
  .edition-head>div>p:last-child{max-width:510px;margin-top:15px}
  .edition-grid{grid-template-columns:minmax(0,1.08fr) minmax(320px,.84fr) minmax(260px,.60fr)}
  .edition-lead,.edition-brief,.edition-pulse{padding-top:32px;padding-bottom:34px}
}
@media (max-width:760px){
  .edition-head h1{font-size:45px;line-height:1}
  .edition-head>div>p:last-child{font-size:16px;line-height:1.5;max-width:30ch}
  .edition-recap-link{margin-top:5px}
}

/* Long-form reading: larger type, shorter visual lines and clear key takeaways. */
.recap-story{background:linear-gradient(145deg,#173755 0%,#122d4b 52%,#102843 100%);box-shadow:inset 0 1px 0 rgba(220,235,248,.10),inset 0 -1px 0 rgba(220,235,248,.10)}
.recap-story .recap-hero,.recap-story .editorial-layout{padding-left:clamp(22px,3vw,48px);padding-right:clamp(22px,3vw,48px)}
.recap-story .recap-article p{color:#d5e1ec!important}.recap-story .quickscan-points p{color:#c8d7e4!important}
.recap-story .recap-aside{color:#c1d0de}.recap-story .recap-aside a:hover{color:#fff}
.recap-share-x{margin-top:8px;color:var(--text);border-color:rgba(190,210,229,.34);background:rgba(190,210,229,.06)}
/* Light is a complete reading surface, not a light header over a dark page. */
body.light{background:linear-gradient(135deg,#f7fbff 0%,#edf5fb 55%,#e8f2fa 100%)}
body.light .workspace,body.light .content-page,body.light .briefing-section,body.light .upcoming-section{background:transparent}
body.light .edition-lead>p:not(.eyebrow),body.light .edition-head>div>p:last-child,body.light .edition-why p{color:#395672!important}
body.light .edition-item small,body.light .edition-pulse>div span,body.light .edition-pulse small{color:#4d6983}
.recap-share-x span{font-size:13px}
@media (min-width:761px){
  .content-page .section-note{font-size:18px;line-height:1.65}
  .stories .story-copy>p,.timeline p{font-size:18px;line-height:1.68}
  .space-card p{font-size:18px;line-height:1.62}
  .recap-dek{font-size:20px;line-height:1.62}
  .recap-meta{font-size:13px}
  .recap-aside{font-size:14px;gap:15px}
  .recap-aside p{font-size:12px}
  .recap-article{padding-top:58px}
  .recap-article section{padding:62px 0}
  .recap-article h2{max-width:720px;font-size:clamp(32px,3vw,46px);line-height:1.12;margin-bottom:24px}
  .recap-article p{max-width:690px;font-size:20px!important;line-height:1.78!important;margin-bottom:24px}
  .quickscan-heading p,.quickscan-points p{font-size:16px!important}
  .quickscan-points h3{font-size:19px}
  .editorial-note p{font-size:23px!important;line-height:1.5!important}
  .why-box p{font-size:18px!important;line-height:1.68!important}
  .recap-sources a{font-size:16px}
}
@media (max-width:760px){
  .content-page .section-note{font-size:17px;line-height:1.65}
  .spaces-heading>div>p:last-child,.space-card p{font-size:17px!important;line-height:1.62}
  .recap-dek{font-size:18px;line-height:1.62}
  .recap-article p{font-size:18px!important;line-height:1.76!important}
  .recap-article h2{font-size:30px;line-height:1.14}
  .quickscan-heading p,.quickscan-points p{font-size:16px!important;line-height:1.62!important}
  .quickscan-points h3{font-size:18px}
  .editorial-note p{font-size:20px!important;line-height:1.52!important}
  .why-box p{font-size:17px!important;line-height:1.65!important}
  .recap-sources a{font-size:16px}
  .recap-share{min-height:44px;padding:0 13px;font-size:12px}
}
