:root {
  --bg: #f8f8fc;
  --bg-soft: #f1f2f9;
  --panel: rgba(255, 255, 255, .84);
  --panel-solid: #ffffff;
  --ink: #161c3b;
  --ink-soft: #52608f;
  --muted: #7f89ae;
  --line: #e1e4f1;
  --line-strong: #c9d0e8;
  --purple: #6c69ef;
  --purple-deep: #4e4bd0;
  --periwinkle: #e8eaff;
  --sky: #dbeaff;
  --cyan: #6d92ef;
  --green: #76c89b;
  --orange: #eea864;
  --danger: #d98092;
  --gold: #c9a467;
  --gold-soft: #f3eadb;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .45;
  background: radial-gradient(circle at 78% 0%, rgba(203, 216, 255, .48), transparent 31%), radial-gradient(circle at 3% 56%, rgba(246, 232, 216, .6), transparent 27%), linear-gradient(180deg, #fbfbfe 0%, #f7f8fc 58%, #fbfafc 100%);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, a, input, textarea, select { touch-action: manipulation; }
[hidden] { display: none !important; }

.noise { position: fixed; inset: 0; z-index: 10; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.orb { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .28; }
.orb-a { width: 27rem; height: 27rem; right: -13rem; top: 7rem; background: #c9d9ff; }
.orb-b { width: 22rem; height: 22rem; left: -13rem; top: 60rem; background: #f0ddff; }
.app-shell { position: relative; z-index: 1; overflow: visible; }
.section-wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.topbar { display: flex; align-items: center; gap: 31px; min-height: 82px; width: min(1280px, calc(100% - 40px)); margin: 0 auto; border-bottom: 1px solid rgba(199, 211, 241, .54); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); letter-spacing: -.02em; font-size: 17px; }
.brand strong { font-weight: 700; }
.brand em { font-style: normal; font-weight: 700; color: var(--purple); }
.brand-wave { display: inline-block; margin-left: 5px; color: var(--purple); font-size: 27px; font-weight: 700; line-height: 0; transform: translateY(1px) rotate(-8deg); }
.brand-mark { position: relative; display: grid; place-items: center; width: 39px; height: 39px; overflow: hidden; border: 1px solid #e4d6bf; border-radius: 13px; background: linear-gradient(145deg, #fff9ee, #f1e4d0); box-shadow: 0 6px 14px rgba(197, 170, 129, .2); }
.mini-face { position: relative; display: block; width: 25px; height: 22px; border-radius: 48% 48% 44% 44%; background: #ffedd6; box-shadow: inset 0 -3px 0 rgba(222, 188, 149, .35); }
.mini-face i { position: absolute; top: 8px; width: 3px; height: 4px; border-radius: 50%; background: #202748; }
.mini-face i:first-child { left: 7px; }
.mini-face i:nth-child(2) { right: 7px; }
.mini-face b { position: absolute; bottom: 4px; left: 10px; width: 6px; height: 3px; border-bottom: 1.5px solid #202748; border-radius: 50%; }
.primary-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; color: var(--ink-soft); font-size: 13px; }
.primary-nav a { padding: 10px 13px; border-radius: 22px; transition: color .2s, background .2s, box-shadow .2s; }
.primary-nav a.active, .primary-nav a:hover, .primary-nav a:focus-visible { color: var(--purple-deep); background: rgba(255, 255, 255, .48); box-shadow: 0 6px 18px rgba(108, 127, 221, .08); }
.topbar-cta { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border: 1px solid rgba(255, 255, 255, .7); border-radius: 24px; background: var(--ink); color: #fff; box-shadow: 0 9px 20px rgba(22, 28, 59, .16); font-size: 12px; transition: transform .2s, box-shadow .2s, background .2s; }
.topbar-cta:hover, .topbar-cta:focus-visible { background: #262d58; box-shadow: 0 12px 26px rgba(22, 28, 59, .23); transform: translateY(-1px); }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-create, .auth-trigger { min-height: 38px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(255, 255, 255, .6); color: var(--purple-deep); cursor: pointer; font: 10px var(--mono); letter-spacing: .06em; transition: border-color .2s, background .2s, transform .2s; }
.topbar-create { border-color: rgba(108, 105, 239, .48); background: var(--purple); color: #fff; box-shadow: 0 9px 18px rgba(108, 105, 239, .2); }
.topbar-create:hover, .topbar-create:focus-visible, .auth-trigger:hover, .auth-trigger:focus-visible { border-color: var(--purple); background: #fff; transform: translateY(-1px); }
.topbar-create:hover, .topbar-create:focus-visible { background: var(--purple-deep); color: #fff; }
.auth-trigger { color: var(--ink); }
.user-menu { position: absolute; z-index: 20; top: 69px; right: max(20px, calc((100vw - 1280px) / 2)); display: grid; min-width: 190px; padding: 7px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .98); box-shadow: 0 18px 36px rgba(74, 101, 179, .18); }
.user-menu a, .user-menu button { padding: 10px 11px; border: 0; border-radius: 9px; background: transparent; color: var(--ink-soft); text-align: left; cursor: pointer; font-size: 11px; }
.user-menu a:hover, .user-menu button:hover, .user-menu a:focus-visible, .user-menu button:focus-visible { background: var(--periwinkle); color: var(--ink); outline: 0; }
.text-button { border: 0; background: transparent; cursor: pointer; }
.nav-toggle { display: none; }

.hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 38px; min-height: 630px; align-items: center; padding-block: 55px 70px; }
.eyebrow { display: flex; align-items: center; gap: 8px; color: var(--purple); font: 500 11px/1.2 var(--mono); letter-spacing: .18em; }
.eyebrow b { color: #9db0ed; font-weight: 400; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(201, 164, 103, .5); }
.eyebrow-id { color: var(--muted); }
h1, h2, p { margin-top: 0; }
h1 { max-width: 570px; margin: 23px 0 24px; color: var(--ink); font-family: var(--display); font-size: clamp(56px, 7vw, 92px); line-height: .92; letter-spacing: -.045em; font-weight: 400; }
h1 span { color: var(--purple); text-shadow: 0 12px 28px rgba(108, 105, 239, .18); }
.hero-lede { max-width: 475px; margin-bottom: 30px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 17px; min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 25px; font-size: 12px; font-weight: 600; letter-spacing: .01em; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #5d5add, #7674f4); color: #fff; box-shadow: 0 14px 24px rgba(82, 80, 203, .22); }
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(135deg, #5268f2, #6174ed); box-shadow: 0 17px 29px rgba(94, 112, 228, .28); }
.button-ghost { border-color: var(--line-strong); color: var(--purple-deep); background: rgba(255, 255, 255, .53); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: #b7c4f5; background: #fff; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 40px; color: var(--muted); font: 10px var(--mono); }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(118, 200, 155, .48); }
.status-dot-muted { background: #9ba9d1; box-shadow: none; }
.status-dot-error { background: var(--danger); box-shadow: 0 0 12px rgba(217, 128, 146, .45); }
.status-dot-partial { background: var(--orange); box-shadow: 0 0 12px rgba(238, 168, 100, .42); }

.hero-visual { position: relative; min-height: 500px; overflow: hidden; border-radius: 28px; background: linear-gradient(135deg, #eef6ff 0%, #cfe0ff 50%, #b5d2ff 100%); box-shadow: 0 24px 55px rgba(106, 133, 205, .18); }
.hero-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255, 255, 255, .74), transparent 45%), radial-gradient(circle at 65% 38%, rgba(255, 255, 255, .5), transparent 27%); }
.sun-glow { position: absolute; top: 25px; right: 4%; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .35); filter: blur(12px); }
.cloud { position: absolute; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .72); filter: blur(2px); }
.cloud::before, .cloud::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.cloud::before { width: 75px; height: 75px; left: 23px; bottom: 5px; }
.cloud::after { width: 52px; height: 52px; left: 80px; bottom: 0; }
.cloud-a { width: 185px; top: 110px; left: -28px; opacity: .72; }
.cloud-b { width: 145px; right: -18px; bottom: 120px; opacity: .65; }
.cloud-c { width: 110px; top: 65px; right: 16%; opacity: .5; transform: scale(.7); }
.hero-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, .85); border-radius: 16px; background: rgba(255, 255, 255, .76); color: var(--ink-soft); box-shadow: 0 14px 28px rgba(94, 125, 193, .13); backdrop-filter: blur(12px); font-size: 12px; line-height: 1.35; }
.hero-card strong { color: var(--ink); font-weight: 600; }
.hero-card-note { top: 55px; left: 11%; transform: rotate(-4deg); }
.card-mascot { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; background: #fff1df; }
.card-mascot .mini-face { transform: scale(.83); }
.card-spark { margin-left: 5px; color: var(--purple); font-size: 27px; font-weight: 700; }
.hero-card-screen { top: 62px; right: 6%; display: grid; grid-template-columns: 126px auto; gap: 7px 12px; transform: rotate(6deg); }
.screen-landscape { grid-column: 1 / -1; width: 126px; height: 62px; border-radius: 8px; background: linear-gradient(165deg, #a8d0ff 10%, #eff8ff 38%, #96c7ad 39%, #7ab28e 68%, #9bcbeb 69%); }
.hero-card-screen span { color: var(--muted); font: 8px var(--mono); }
.hero-card-screen strong { font: 16px var(--mono); color: var(--purple-deep); }
.hero-card-idea { right: 5%; bottom: 30%; padding: 12px 16px; color: var(--purple); font-weight: 600; transform: rotate(-5deg); }
.hero-card-idea b { font-size: 18px; font-weight: 500; }

.mascot-character { position: absolute; z-index: 2; right: 18%; bottom: 28px; width: 305px; height: 360px; }
.mascot-hood { position: absolute; z-index: 1; top: 0; left: 8px; width: 285px; height: 315px; border-radius: 48% 48% 43% 43%; background: linear-gradient(145deg, #fff8e9, #eedcc6); box-shadow: inset -17px -8px 0 rgba(223, 191, 153, .28), 13px 20px 30px rgba(94, 123, 180, .18); }
.mascot-body { position: absolute; z-index: 2; top: 58px; left: 45px; width: 215px; height: 245px; border-radius: 45% 45% 44% 44%; background: linear-gradient(145deg, #fff8ec, #f1dec5); box-shadow: inset -9px -7px 0 rgba(221, 188, 148, .24); }
.mascot-face { position: absolute; top: 48px; left: 28px; width: 160px; height: 125px; border-radius: 48% 48% 45% 45%; background: linear-gradient(145deg, #ffedda, #f7dfc3); box-shadow: inset 0 -7px 0 rgba(225, 186, 145, .2); }
.mascot-face i { position: absolute; top: 44px; width: 16px; height: 18px; border-radius: 50%; background: #191d35; box-shadow: 0 2px 4px rgba(0, 0, 0, .16); }
.mascot-face i:first-child { left: 38px; }
.mascot-face i:nth-child(2) { right: 38px; }
.mascot-face b { position: absolute; left: 69px; bottom: 28px; width: 26px; height: 13px; border-bottom: 4px solid #272741; border-radius: 50%; }
.mascot-arm { position: absolute; z-index: -1; width: 83px; height: 118px; border-radius: 50%; background: #f7e5ce; box-shadow: inset -7px -5px 0 rgba(220, 187, 146, .26); }
.arm-left { left: -42px; bottom: 11px; transform: rotate(31deg); }
.arm-right { right: -38px; bottom: 11px; transform: rotate(-28deg); }
.mascot-laptop { position: absolute; z-index: 4; left: 21px; bottom: -6px; width: 220px; height: 112px; border-radius: 14px 14px 9px 9px; background: linear-gradient(145deg, #3f537e, #1e2e55); transform: perspective(180px) rotateX(-6deg) rotate(-4deg); box-shadow: 0 14px 18px rgba(49, 74, 133, .22); }
.mascot-laptop::after { content: ""; position: absolute; left: -17px; bottom: -15px; width: 253px; height: 23px; border-radius: 50%; background: #d7e1f4; box-shadow: 0 5px 4px rgba(75, 104, 160, .15); }
.mascot-laptop span { position: absolute; top: 43px; left: 98px; color: #8ea5ff; font-size: 35px; font-weight: 700; text-shadow: 0 0 12px #89a0ff; transform: rotate(-6deg); }
.mascot-feet { position: absolute; z-index: 3; left: 20px; bottom: -6px; width: 90px; height: 44px; border-radius: 50%; background: #f3dfc5; box-shadow: 172px 0 0 #f3dfc5; }
.hero-ground { position: absolute; right: -8%; bottom: -32px; width: 90%; height: 105px; border-radius: 52% 45% 0 0; background: linear-gradient(180deg, #9fc2a8, #86b391); transform: rotate(-2deg); box-shadow: inset 0 13px 0 rgba(228, 243, 211, .55); }
.scene-spark { position: absolute; z-index: 4; color: var(--purple); font-size: 34px; text-shadow: 0 5px 13px rgba(96, 117, 255, .22); }
.spark-a { top: 35%; left: 8%; }
.spark-b { top: 42%; right: 17%; font-size: 24px; transform: rotate(24deg); }
.spark-c { bottom: 18%; left: 37%; font-size: 21px; transform: rotate(-14deg); }
.visual-caption { position: absolute; z-index: 6; bottom: 17px; left: 20px; color: rgba(36, 58, 120, .67); font: 9px var(--mono); letter-spacing: .03em; }
.live-line { display: inline-block; width: 22px; height: 1px; margin-right: 8px; vertical-align: middle; background: var(--purple); box-shadow: 0 0 8px rgba(96, 117, 255, .5); }

.signal-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.strip-cell { display: grid; gap: 7px; min-height: 112px; padding: 22px 25px; border-right: 1px solid var(--line); }
.strip-cell:first-child { padding-left: 0; }
.strip-cell:last-child { border-right: 0; padding-right: 0; }
.strip-label, .data-badge, .radar-foot, .footer-meta { color: var(--muted); font: 9px var(--mono); letter-spacing: .12em; }
.strip-cell strong { display: flex; align-items: center; gap: 8px; min-height: 25px; color: var(--ink); font: 500 23px var(--mono); letter-spacing: -.05em; }
.strip-cell small { color: var(--muted); font-size: 10px; }

.section-block { padding-block: 100px; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
h2 { margin: 10px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(34px, 4vw, 52px); line-height: .98; letter-spacing: -.035em; font-weight: 400; }
.section-intro { max-width: 515px; margin: 14px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.section-aside { display: grid; justify-items: end; gap: 10px; color: var(--muted); font: 10px var(--mono); }
.data-badge { padding: 6px 8px; border: 1px solid #afc0ef; color: var(--purple-deep); }
.data-badge.error { border-color: #e2a6b2; color: var(--danger); }
.data-badge.ready { border-color: #9ed1b3; color: #41946b; }
.data-badge.partial { border-color: #e9c38e; color: #b8752d; }
.pulse-feed { display: grid; border-top: 1px solid var(--line); }
.pulse-directory-viewport { max-height: 590px; padding: 0 8px 0 2px; }
.pulse-directory-viewport .pulse-feed { padding: 0 6px 0 4px; }
.pulse-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) 150px 160px; align-items: center; gap: 22px; min-height: 90px; border-bottom: 1px solid var(--line); }
.pulse-time { color: var(--muted); font: 10px var(--mono); }
.pulse-signal { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pulse-avatar { position: relative; display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; overflow: hidden; border: 1px solid #c8d5f3; border-radius: 12px; background: linear-gradient(145deg, #edf1ff, #c2d0ff); color: var(--purple-deep); font: 15px var(--mono); }
.pulse-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pulse-avatar.no-image img { display: none; }
.pulse-glyph { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--purple); font: 12px var(--mono); }
.pulse-signal strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); font-size: 14px; font-weight: 600; }
.pulse-signal small, .pulse-context { color: var(--muted); font-size: 11px; }
.pulse-context { font-family: var(--mono); }
.pulse-link, .text-link { color: var(--purple-deep); font: 10px var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.pulse-link { justify-self: end; }
.pulse-link:hover, .text-link:hover { color: var(--ink); }

.section-tools { display: flex; align-items: center; gap: 9px; }
select { height: 38px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(255, 255, 255, .64); color: var(--ink-soft); font: 10px var(--mono); outline: 0; }
select:focus { border-color: var(--purple); }
.card-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.muse-card, .channel-card { position: relative; display: flex; flex-direction: column; min-height: 208px; padding: 20px; border: 1px solid rgba(205, 216, 242, .9); border-radius: 18px; background: rgba(255, 255, 255, .72); box-shadow: 0 11px 26px rgba(106, 130, 192, .08); transition: border-color .2s, transform .2s, background .2s, box-shadow .2s; }
.muse-card::before, .channel-card::before { content: ""; position: absolute; top: 0; left: 20px; width: 54px; height: 2px; border-radius: 0 0 3px 3px; background: var(--purple); box-shadow: 0 0 12px rgba(96, 117, 255, .3); }
.muse-card:hover, .channel-card:hover { transform: translateY(-3px); border-color: #b6c5f3; background: #fff; box-shadow: 0 17px 33px rgba(106, 130, 192, .13); }
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 26px; }
.record-tag { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.record-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px rgba(96, 117, 255, .46); }
.record-dot.channel { background: #73a6ea; box-shadow: 0 0 10px rgba(115, 166, 234, .46); }
.card-title { margin-bottom: 8px; color: var(--ink); font-size: 23px; letter-spacing: -.04em; font-weight: 600; }
.card-description { min-height: 36px; margin-bottom: 22px; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); }
.card-meta { color: var(--muted); font: 9px var(--mono); }
.card-link { color: var(--purple-deep); font: 10px var(--mono); text-transform: uppercase; }
.card-link:hover { color: var(--ink); }
.directory-viewport { max-height: 610px; overflow-x: hidden; overflow-y: auto; padding: 4px 8px 8px 2px; border: 1px solid var(--line); border-radius: 20px; background: rgba(247, 250, 255, .56); box-shadow: inset 0 0 24px rgba(115, 145, 218, .05); overscroll-behavior: contain; scrollbar-color: #a7b9ed transparent; scrollbar-width: thin; }
.directory-viewport::-webkit-scrollbar { width: 8px; }
.directory-viewport::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 8px; background: #a7b9ed; background-clip: padding-box; }
.directory-viewport::-webkit-scrollbar-track { background: transparent; }
.directory-viewport .card-grid, .directory-viewport .channel-grid { padding: 8px 6px 10px 4px; }
.muse-card { min-height: 164px; padding: 15px; border-radius: 16px; }
.muse-card::before { left: 15px; width: 38px; }
.muse-card-head { display: flex; align-items: center; gap: 9px; min-width: 0; margin-bottom: 12px; }
.muse-avatar { position: relative; display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; overflow: hidden; border: 1px solid #c8d5f3; border-radius: 13px; background: linear-gradient(145deg, #e6edff, #b7c9ff); color: var(--purple-deep); font: 17px var(--mono); }
.muse-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #e6edff; }
.muse-avatar.no-image img { display: none; }
.muse-card-meta { display: grid; min-width: 0; gap: 3px; }
.muse-card-meta .record-tag { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.muse-card-id { overflow: hidden; color: var(--muted); font: 8px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.muse-card .card-title { overflow: hidden; margin-bottom: 5px; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.muse-card .card-description { display: -webkit-box; overflow: hidden; min-height: 30px; margin-bottom: 10px; font-size: 10px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.muse-card .card-footer { gap: 7px; padding-top: 9px; }
.muse-card .card-meta, .muse-card .card-link { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.collection-note { color: var(--muted); font: 9px var(--mono); letter-spacing: .08em; white-space: nowrap; }
.empty-state { display: grid; place-items: start; gap: 10px; min-height: 180px; padding: 28px; border: 1px dashed #c6d2f0; border-radius: 18px; background: rgba(255, 255, 255, .55); }
.empty-state.compact { min-height: 128px; }
.empty-state .empty-index { color: var(--purple); font: 10px var(--mono); }
.empty-state strong { color: var(--ink); font-size: 17px; font-weight: 600; }
.empty-state p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.empty-state-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 7px; }
.directory-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 6px 4px; border-top: 1px solid var(--line); }
.directory-count { color: var(--muted); font: 9px var(--mono); letter-spacing: .08em; }
.directory-control-actions { display: flex; align-items: center; justify-content: end; flex-wrap: wrap; gap: 15px; }
.directory-load-more, .directory-back-top { padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(255, 255, 255, .68); color: var(--purple-deep); cursor: pointer; font: 9px var(--mono); letter-spacing: .05em; transition: border-color .2s, background .2s, transform .2s; }
.directory-load-more { border-color: rgba(108, 105, 239, .42); background: var(--purple); color: #fff; box-shadow: 0 8px 16px rgba(108, 105, 239, .16); }
.directory-load-more:hover, .directory-load-more:focus-visible, .directory-back-top:hover, .directory-back-top:focus-visible { border-color: var(--purple); background: #fff; color: var(--purple-deep); outline: 0; transform: translateY(-1px); }
.directory-back-top { background: transparent; }
.directory-back { white-space: nowrap; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.channel-card { min-height: 160px; }
.channel-card .card-top { margin-bottom: 18px; }
.channel-glyph { color: var(--purple); font: 15px var(--mono); }
.channel-name { margin-bottom: 8px; color: var(--ink); font-size: 18px; font-weight: 600; }
.channel-description { min-height: 34px; margin-bottom: 18px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.channel-card { display: block; min-height: 0; padding: 0; overflow: hidden; }
.channel-card::before { left: 0; z-index: 2; width: 46px; }
.channel-cover { position: relative; display: grid; place-items: center; height: 92px; overflow: hidden; background: linear-gradient(135deg, #b6c7fb, #e0eaff 54%, #c8d8ff); }
.channel-cover::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(57, 83, 168, .03), rgba(38, 60, 132, .32)); content: ""; }
.channel-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.channel-cover.no-image img { display: none; }
.channel-cover-fallback { position: relative; z-index: 1; color: rgba(44, 69, 152, .65); font: 30px var(--mono); }
.channel-cover-label { position: absolute; right: 10px; bottom: 8px; z-index: 2; color: rgba(255, 255, 255, .85); font: 8px var(--mono); letter-spacing: .12em; }
.channel-card-body { padding: 14px 16px 15px; }
.channel-card .card-top { margin-bottom: 12px; }
.channel-card .channel-description { min-height: 32px; margin-bottom: 14px; font-size: 10px; }
.channel-card .card-footer { padding-top: 10px; }

.radar-panel { position: relative; min-height: 430px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(135deg, #f7f9ff, #edf4ff); box-shadow: 0 14px 28px rgba(106, 130, 192, .08); }
.network-graph { position: absolute; inset: 0; padding: 30px; }
.network-graph svg { width: 100%; height: 100%; overflow: visible; }
.graph-link { stroke: rgba(96, 117, 255, .34); stroke-width: 1.2; stroke-dasharray: 4 7; }
.graph-node-halo { fill: rgba(255, 255, 255, .8); stroke-width: 1; opacity: .9; }
.graph-node.muse .graph-node-halo { stroke: rgba(96, 117, 255, .28); }
.graph-node.channel .graph-node-halo { stroke: rgba(115, 166, 234, .35); }
.graph-node-ring { fill: none; stroke-width: 1.5; }
.graph-node.muse .graph-node-ring { stroke: var(--purple); }
.graph-node.channel .graph-node-ring { stroke: #73a6ea; }
.graph-initial { fill: var(--purple-deep); font: 13px var(--mono); text-anchor: middle; }
.graph-label-bg { fill: rgba(255, 255, 255, .86); stroke: rgba(205, 216, 242, .9); }
.graph-label { fill: var(--ink-soft); font: 9px var(--mono); text-anchor: middle; }
.graph-core-halo { fill: rgba(107, 231, 230, .08); stroke: rgba(107, 231, 230, .22); stroke-width: 1; }
.graph-core { fill: rgba(107, 231, 230, .1); stroke: rgba(107, 231, 230, .72); stroke-width: 1.2; }
.graph-core-label { fill: #4d9d9d; font: 9px var(--mono); text-anchor: middle; }
.radar-empty { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 30px; text-align: center; }
.radar-empty.hidden { display: none; }
.radar-empty-glyph { color: var(--purple); font: 42px var(--mono); line-height: 1; opacity: .65; }
.radar-empty strong { color: var(--ink); font-size: 16px; font-weight: 600; }
.radar-empty p { max-width: 380px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.radar-foot { position: absolute; right: 18px; bottom: 16px; left: 18px; display: flex; justify-content: space-between; gap: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.legend { display: flex; flex-wrap: wrap; justify-content: end; gap: 15px; color: var(--ink-soft); font: 9px var(--mono); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 6px; height: 6px; border-radius: 50%; }
.legend-muse { background: var(--purple); box-shadow: 0 0 8px rgba(96, 117, 255, .35); }
.legend-channel { background: #73a6ea; box-shadow: 0 0 8px rgba(115, 166, 234, .35); }
.legend-line { width: 18px; height: 1px; background: var(--purple); }

.methodology { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.methodology-copy h2 { max-width: 360px; }
.methodology-copy p { max-width: 450px; margin: 18px 0 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.methodology-points { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.methodology-points > div { display: grid; gap: 13px; min-height: 155px; padding: 18px 17px 12px 0; border-right: 1px solid var(--line); }
.methodology-points > div + div { padding-left: 17px; }
.methodology-points > div:last-child { border-right: 0; }
.methodology-points span { color: var(--purple); font: 10px var(--mono); }
.methodology-points strong { color: var(--ink); font-size: 15px; font-weight: 600; }
.methodology-points small { color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.about-section { position: relative; }
.about-section::before { position: absolute; inset: 44px 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(96, 117, 255, .28), transparent); content: ""; pointer-events: none; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; margin-top: 48px; }
.about-intro { display: grid; align-content: start; gap: 18px; }
.about-index { color: var(--purple); font: 9px var(--mono); letter-spacing: .12em; }
.about-intro h3 { max-width: 390px; color: var(--ink); font: 500 clamp(28px, 3.2vw, 44px)/1.04 var(--display); letter-spacing: -.04em; }
.about-intro p { max-width: 450px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.about-flow { border-top: 1px solid var(--line); }
.about-step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.about-step-number { color: var(--gold); font: 11px var(--mono); letter-spacing: .08em; }
.about-step strong { display: block; margin-bottom: 8px; color: var(--ink); font: 700 15px var(--sans); }
.about-step p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.about-boundary { display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; align-items: start; gap: 28px; margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); }
.about-boundary p { max-width: 640px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.about-boundary .text-link { white-space: nowrap; }
.about-usage { margin-top: 82px; padding-top: 22px; border-top: 1px solid var(--line); }
.about-usage-heading { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 28px; }
.about-usage-heading h3, .about-create-head h3 { max-width: 490px; color: var(--ink); font: 500 clamp(27px, 3vw, 40px)/1.06 var(--display); letter-spacing: -.04em; }
.about-usage-heading p, .about-create-head p { max-width: 560px; margin: 15px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.about-use-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 38px; border-top: 1px solid var(--line); }
.about-use-card { display: grid; align-content: start; gap: 13px; min-height: 190px; padding: 18px 16px 15px 0; border-right: 1px solid var(--line); }
.about-use-card + .about-use-card { padding-left: 16px; }
.about-use-card:last-child { border-right: 0; }
.about-use-card > span { color: var(--gold); font: 9px var(--mono); letter-spacing: .12em; }
.about-use-card strong { color: var(--ink); font: 700 14px var(--sans); }
.about-use-card p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.about-create-flow { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--line); }
.about-create-head { display: grid; align-content: start; gap: 17px; }
.about-create-head h3 { margin-top: 4px; }
.about-create-head p { margin-top: 0; }
.about-flow-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.about-flow-list li { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.about-flow-list li > span { color: var(--gold); font: 11px var(--mono); letter-spacing: .08em; }
.about-flow-list strong { display: block; margin-bottom: 7px; color: var(--ink); font: 700 14px var(--sans); }
.about-flow-list p { max-width: 600px; margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }

.profile-view { padding-block: 78px; }
.profile-view[hidden] { display: none; }
.profile-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 35px; }
.profile-kicker { color: var(--purple); font: 10px var(--mono); letter-spacing: .13em; }
.profile-head h2 { font-size: clamp(40px, 6vw, 72px); }
.profile-id { margin: 13px 0 0; color: var(--muted); font: 11px var(--mono); }
.profile-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; }
.profile-panel { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .72); box-shadow: 0 11px 26px rgba(106, 130, 192, .06); }
.profile-panel h3 { margin: 0 0 17px; color: var(--muted); font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.profile-panel p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.profile-panel.tall { min-height: 190px; }

.footer { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(150px, .8fr) minmax(170px, .8fr); gap: 30px; padding-block: 58px 38px; overflow: hidden; }
.footer::before { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 8% 42%, rgba(219, 234, 255, .46), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(235, 238, 252, .42)); content: ""; pointer-events: none; }
.footer::after { position: absolute; top: 0; left: 0; width: 150px; height: 2px; background: linear-gradient(90deg, var(--purple), transparent); content: ""; }
.footer > * { position: relative; z-index: 1; }
.footer-brand p { max-width: 300px; margin: 15px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.footer-social { display: inline-flex; align-items: center; gap: 11px; width: fit-content; max-width: 100%; margin-top: 22px; padding: 9px 12px 9px 9px; border: 1px solid rgba(169, 181, 224, .74); border-radius: 16px; background: rgba(255, 255, 255, .62); box-shadow: 0 10px 24px rgba(88, 106, 178, .08); transition: border-color .2s, background .2s, box-shadow .2s, transform .2s; }
.footer-social:hover, .footer-social:focus-visible { border-color: var(--purple); background: #fff; box-shadow: 0 14px 28px rgba(88, 106, 178, .14); outline: 0; transform: translateY(-2px); }
.footer-social-mark { display: grid; flex: 0 0 auto; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--ink); color: #fff; font: 600 12px var(--mono); }
.footer-social-copy { display: grid; gap: 3px; min-width: 0; }
.footer-social-copy strong { color: var(--ink); font-size: 11px; font-weight: 700; }
.footer-social-copy small { overflow: hidden; color: var(--muted); font: 9px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.footer-social-arrow { margin-left: 4px; color: var(--purple-deep); font: 15px var(--mono); }
.footer-label { color: var(--gold); font: 9px var(--mono); letter-spacing: .13em; }
.footer-links { display: grid; align-content: start; gap: 12px; color: var(--ink-soft); font: 11px var(--mono); }
.footer-links a { transition: color .2s, transform .2s; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--purple-deep); outline: 0; transform: translateX(3px); }
.footer-meta { display: grid; justify-items: end; align-content: start; gap: 12px; text-align: right; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 20; max-width: 330px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; color: var(--ink-soft); box-shadow: 0 15px 35px rgba(87, 107, 177, .18); font: 10px/1.5 var(--mono); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s; }
.toast.show { opacity: 1; transform: translateY(0); }
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 46px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 470px; }
  .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology, .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-create-flow { grid-template-columns: 1fr; gap: 42px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { justify-items: start; text-align: left; }
}

@media (max-width: 900px) {
  .topbar { position: relative; min-height: 68px; gap: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; padding: 9px 0 9px 13px; border: 0; background: transparent; color: var(--ink-soft); font: 9px var(--mono); letter-spacing: .1em; }
  .primary-nav { position: absolute; top: 67px; right: 0; left: 0; z-index: 4; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 6px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .98); box-shadow: 0 18px 30px rgba(74, 101, 179, .17); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 12px; border-radius: 10px; border-bottom: 1px solid var(--line); background: transparent; box-shadow: none; }
  .primary-nav a:last-child { border-bottom: 0; }
  .topbar-cta { display: none; }
  .topbar-actions { margin-left: 0; }
  .topbar-create, .auth-trigger { min-height: 34px; padding-inline: 10px; font-size: 9px; }
  .user-menu { top: 58px; right: 0; }
}

@media (max-width: 680px) {
  .section-wrap, .topbar { width: min(100% - 28px, 1160px); }
  .topbar { position: relative; min-height: 68px; gap: 12px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 35px; height: 35px; }
  .nav-toggle { display: inline-flex; margin-left: auto; padding: 9px 0 9px 13px; border: 0; background: transparent; color: var(--ink-soft); font: 9px var(--mono); letter-spacing: .1em; }
  .primary-nav { position: absolute; top: 67px; right: 0; left: 0; z-index: 4; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 6px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .98); box-shadow: 0 18px 30px rgba(74, 101, 179, .17); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 12px; border-radius: 10px; border-bottom: 1px solid var(--line); background: transparent; box-shadow: none; }
  .primary-nav a:last-child { border-bottom: 0; }
  .topbar-cta { display: none; }
  .topbar-actions { margin-left: auto; }
  .topbar-create { min-height: 34px; padding-inline: 10px; font-size: 9px; }
  .auth-trigger { min-height: 34px; padding-inline: 10px; font-size: 9px; }
  .user-menu { top: 58px; right: 0; }
  .hero { min-height: auto; padding-block: 52px 50px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-lede { font-size: 15px; }
  .hero-visual { min-height: 410px; border-radius: 23px; }
  .mascot-character { right: 11%; bottom: 28px; transform: scale(.76); transform-origin: bottom right; }
  .hero-card-note { top: 38px; left: 5%; transform: scale(.82) rotate(-4deg); transform-origin: top left; }
  .hero-card-screen { top: 46px; right: -8%; transform: scale(.76) rotate(6deg); transform-origin: top right; }
  .hero-card-idea { right: 4%; bottom: 29%; transform: scale(.8) rotate(-5deg); }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-cell { min-height: 94px; padding: 17px 14px; border-bottom: 1px solid var(--line); }
  .strip-cell:first-child { padding-left: 0; }
  .strip-cell:nth-child(2) { padding-right: 0; border-right: 0; }
  .strip-cell:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .strip-cell:last-child { padding-right: 0; border-bottom: 0; }
  .strip-cell strong { font-size: 18px; }
  .section-block { padding-block: 70px; }
  .section-heading, .section-heading-stack-mobile { align-items: start; flex-direction: column; gap: 20px; }
  .section-aside { justify-items: start; }
  .section-tools { width: 100%; flex-wrap: wrap; }
  .section-tools .directory-back { width: 100%; }
  .pulse-row { grid-template-columns: 1fr auto; gap: 10px 12px; padding-block: 17px; }
  .pulse-time { grid-column: 1 / -1; }
  .pulse-signal { grid-column: 1; }
  .pulse-context { grid-column: 1; padding-left: 42px; }
  .pulse-link { grid-column: 2; grid-row: 2 / span 2; }
  .pulse-directory-viewport { max-height: 520px; padding-right: 5px; border-radius: 16px; }
  .pulse-directory-viewport .pulse-feed { padding-inline: 3px; }
  .pulse-avatar { width: 36px; height: 36px; border-radius: 11px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .channel-grid { grid-template-columns: 1fr; }
  .muse-card { min-height: 150px; padding: 12px; }
  .muse-card-head { gap: 7px; margin-bottom: 9px; }
  .muse-avatar { width: 36px; height: 36px; border-radius: 11px; font-size: 14px; }
  .muse-card .card-title { font-size: 14px; }
  .muse-card .card-description { font-size: 9px; }
  .directory-viewport { max-height: 520px; padding-right: 5px; border-radius: 16px; }
  .directory-viewport .card-grid, .directory-viewport .channel-grid { padding-inline: 3px; }
  .channel-cover { height: 82px; }
  .channel-card-body { padding: 12px; }
  .collection-note { align-self: center; }
  .radar-panel { min-height: 365px; }
  .network-graph { padding: 15px; }
  .radar-foot { flex-direction: column; gap: 5px; }
  .legend { justify-content: start; }
  .methodology-points { grid-template-columns: 1fr; }
  .directory-controls { align-items: stretch; flex-direction: column; gap: 13px; padding-inline: 3px; }
  .directory-control-actions { justify-content: space-between; }
  .about-boundary { grid-template-columns: 1fr; gap: 12px; }
  .about-boundary .text-link { justify-self: start; }
  .about-usage-heading { grid-template-columns: 1fr; gap: 16px; }
  .about-use-grid { grid-template-columns: repeat(2, 1fr); }
  .about-use-card:nth-child(2) { border-right: 0; }
  .about-use-card:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .about-use-card:nth-child(3) { padding-left: 0; }
  .about-use-card:nth-child(4) { padding-left: 16px; }
  .methodology-points > div, .methodology-points > div + div { min-height: auto; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .methodology-points > div:last-child { border-bottom: 0; }
  .profile-head { align-items: start; flex-direction: column; }
  .profile-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 28px; padding-bottom: 27px; }
}

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

/* Uploaded artwork: image 1 is the brand mark, image 2 is the hero artwork. */
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-wrap { background: #72a1fa; }
.hero-image-wrap::before { z-index: 1; background: linear-gradient(180deg, rgba(71, 111, 230, .02), rgba(28, 58, 143, .18)); }
.hero-image, .hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(39, 75, 179, .02) 45%, rgba(23, 49, 123, .18)); }
.hero-image-status { position: absolute; top: 20px; right: 20px; z-index: 4; display: grid; gap: 4px; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, .72); border-radius: 13px; background: rgba(255, 255, 255, .68); color: #314a9a; box-shadow: 0 8px 18px rgba(43, 75, 151, .14); backdrop-filter: blur(9px); font: 8px var(--mono); letter-spacing: .1em; }
.hero-image-status strong { color: #243a86; font-size: 16px; letter-spacing: -.04em; }
.hero-image-wrap .visual-caption { color: rgba(255, 255, 255, .88); text-shadow: 0 1px 3px rgba(27, 55, 126, .5); }
.hero-image-wrap .live-line { background: #fff; box-shadow: 0 0 8px rgba(255, 255, 255, .7); }

/* Editorial finish: quieter surfaces, warmer accents, and a stronger reading hierarchy. */
.topbar { background: rgba(248, 249, 253, .48); backdrop-filter: blur(14px); }
.brand-wave { color: var(--gold); }
.brand-mark { border-color: rgba(201, 164, 103, .34); box-shadow: 0 8px 20px rgba(201, 164, 103, .17); }
.hero { min-height: 670px; }
.hero-visual { border: 1px solid rgba(255, 255, 255, .7); border-radius: 32px; box-shadow: 0 28px 65px rgba(65, 82, 151, .2), 0 0 0 8px rgba(255, 255, 255, .2); }
.hero-image-status { border-color: rgba(238, 214, 172, .75); background: rgba(255, 250, 239, .72); color: #81652e; }
.hero-image-status strong { color: #57451e; }
.signal-strip { background: rgba(255, 255, 255, .28); }
.strip-cell { background: linear-gradient(180deg, rgba(255, 255, 255, .2), transparent); }
.strip-label { color: #99815a; }
.section-block { padding-block: 112px; }
.section-heading { margin-bottom: 38px; }
.section-aside { min-width: 260px; }
.section-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.sync-action { padding: 7px 10px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255, 255, 255, .64); color: var(--purple-deep); cursor: pointer; font: 9px var(--mono); letter-spacing: .04em; transition: border-color .2s, color .2s, background .2s, transform .2s; }
.sync-action:hover, .sync-action:focus-visible { border-color: var(--purple); background: #fff; color: var(--ink); transform: translateY(-1px); }
.data-badge { border-radius: 999px; background: rgba(255, 255, 255, .58); }
.directory-viewport { border-color: rgba(201, 208, 232, .92); background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(245, 247, 254, .64)); box-shadow: inset 0 0 30px rgba(106, 116, 196, .055), 0 16px 38px rgba(73, 88, 146, .06); }
.pulse-directory-viewport { border: 1px solid rgba(201, 208, 232, .92); border-radius: 22px; background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(245, 247, 254, .66)); box-shadow: inset 0 0 30px rgba(106, 116, 196, .055), 0 16px 38px rgba(73, 88, 146, .06); }
.pulse-directory-viewport .pulse-feed { border-top: 0; }
.pulse-row { min-height: 96px; padding-inline: 16px; border-bottom-color: rgba(219, 224, 239, .9); transition: background .2s, padding-inline .2s; }
.pulse-row:hover { background: rgba(255, 255, 255, .62); }
.pulse-time { color: #98835f; font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.pulse-avatar { border-color: rgba(201, 164, 103, .4); box-shadow: 0 5px 12px rgba(74, 88, 151, .1); }
.pulse-link, .card-link { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255, 255, 255, .56); transition: color .2s, border-color .2s, background .2s; }
.pulse-link:hover, .pulse-link:focus-visible, .card-link:hover, .card-link:focus-visible { border-color: var(--purple); background: #fff; color: var(--ink); }
.text-link { text-underline-offset: 4px; text-decoration: underline; text-decoration-color: rgba(108, 105, 239, .25); }
.text-link:hover { text-decoration-color: currentColor; }
select { border-radius: 13px; background: rgba(255, 255, 255, .74); }
.muse-card, .channel-card { border-color: rgba(205, 210, 230, .95); border-radius: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(248, 249, 254, .73)); box-shadow: 0 14px 30px rgba(72, 85, 143, .08); }
.muse-card::before, .channel-card::before { background: linear-gradient(90deg, var(--gold), var(--purple)); box-shadow: 0 0 14px rgba(201, 164, 103, .24); }
.muse-card:hover, .channel-card:hover { border-color: #b7b7e7; box-shadow: 0 20px 38px rgba(72, 85, 143, .14); }
.record-dot { background: var(--gold); box-shadow: 0 0 10px rgba(201, 164, 103, .44); }
.card-title, .channel-name { font-family: var(--sans); font-weight: 700; letter-spacing: -.035em; }
.muse-card-username { display: block; overflow: hidden; color: var(--ink); font: 700 14px/1.2 var(--sans); letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }
.muse-card-head { margin-bottom: 16px; }
.muse-card .card-description { min-height: 36px; }
.muse-card .muse-card-id { font-size: 8px; }
.muse-card-meta .muse-card-username + .muse-card-id { margin-top: 3px; }
.hero-copy h1 { font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1; }
.section-heading h2 { font-family: var(--sans); font-weight: 800; letter-spacing: -.07em; }
.channel-cover { background: linear-gradient(135deg, #d7c6a7, #d9dcf5 54%, #aebbf5); }
.channel-cover-label { letter-spacing: .16em; }
.radar-panel { min-height: 470px; border-color: rgba(78, 86, 148, .55); background: radial-gradient(circle at 50% 46%, #2d3b7c 0%, #1d2858 42%, #111833 100%); box-shadow: 0 22px 44px rgba(27, 37, 86, .2); }
.radar-panel::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 42px 42px; content: ""; pointer-events: none; }
.network-graph { z-index: 1; }
.graph-link { stroke: rgba(210, 222, 255, .38); }
.graph-node { cursor: pointer; outline: none; }
.graph-node:focus .graph-node-halo, .graph-node:hover .graph-node-halo { stroke: rgba(255, 255, 255, .74); stroke-width: 2; }
.graph-node-halo { fill: rgba(255, 255, 255, .12); stroke: rgba(255, 255, 255, .18); }
.graph-node.muse .graph-node-halo { stroke: rgba(152, 145, 255, .52); }
.graph-node.channel .graph-node-halo { stroke: rgba(232, 190, 121, .6); }
.graph-node.muse .graph-node-ring { stroke: #9a94ff; }
.graph-node.channel .graph-node-ring { stroke: #e7bd78; }
.graph-initial { fill: #f4f5ff; }
.graph-label-bg { fill: rgba(12, 20, 48, .74); stroke: rgba(219, 226, 255, .25); }
.graph-label { fill: #eef1ff; }
.graph-core-halo { fill: rgba(116, 232, 223, .08); stroke: rgba(116, 232, 223, .26); }
.graph-core { fill: rgba(116, 232, 223, .11); stroke: rgba(116, 232, 223, .78); }
.graph-core-label { fill: #9be8df; }
.radar-foot { color: rgba(222, 230, 255, .66); border-color: rgba(214, 224, 255, .16); }
.legend { color: rgba(222, 230, 255, .72); }
.legend-muse { background: #9a94ff; box-shadow: 0 0 8px rgba(154, 148, 255, .5); }
.legend-channel { background: #e7bd78; box-shadow: 0 0 8px rgba(231, 189, 120, .48); }
.legend-line { background: #d2ddff; }
.radar-empty strong { color: #f2f4ff; }
.radar-empty p { color: rgba(222, 230, 255, .68); }
.radar-empty-glyph { color: #b8b4ff; }
.methodology { position: relative; }
.methodology::before { position: absolute; inset: 44px 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 164, 103, .32), transparent); content: ""; pointer-events: none; }
.footer { border-top: 1px solid rgba(201, 208, 232, .72); }

@media (max-width: 680px) {
  .section-block { padding-block: 76px; }
  .section-aside { width: 100%; min-width: 0; }
  .section-actions { justify-content: flex-start; flex-wrap: wrap; }
  .pulse-row { padding-inline: 10px; }
  .radar-panel { min-height: 390px; }
}

/* Routed menus use one page scroll; nested data columns must not trap touch or wheel input. */
.topbar { position: sticky; top: 0; z-index: 30; }
.user-menu { top: calc(100% + 8px); right: 0; }
.user-menu[hidden] { display: none; }
main > .section-block[data-view]:not([data-view="home"]) {
  display: block;
  min-height: calc(100dvh - 82px);
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
  scroll-margin-top: 82px;
}
main > .section-block[data-view]:not([data-view="home"]) > .directory-viewport,
main > .section-block[data-view]:not([data-view="home"]) > .intelligence-grid,
main > .section-block[data-view]:not([data-view="home"]) > .workspace-content,
main > .section-block[data-view]:not([data-view="home"]) > .radar-panel,
main > .section-block[data-view]:not([data-view="home"]) > .for-muses-grid,
main > .section-block[data-view]:not([data-view="home"]) > .methodology-points {
  flex: none;
  min-height: auto;
}
main > .section-block[data-view]:not([data-view="home"]) > .directory-viewport { max-height: none; overflow: visible; }
main > .section-block[data-view]:not([data-view="home"]) > .intelligence-grid { overflow: visible; align-content: start; padding: 4px 0 8px; }
.now-in-town-section { padding-top: 76px; }
.town-now-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 12px; }
.town-now-panel { min-width: 0; padding: 18px; border: 1px solid rgba(205, 210, 230, .95); border-radius: 21px; background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(247, 248, 253, .72)); box-shadow: 0 14px 28px rgba(72, 85, 143, .06); }
.town-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--gold); font: 9px var(--mono); letter-spacing: .13em; }
.town-now-feed { display: grid; }
.town-now-item { display: grid; grid-template-columns: 9px minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 96px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.town-now-item:last-child { border-bottom: 0; }
.town-now-marker { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(118, 200, 155, .13); }
.town-now-copy { display: grid; min-width: 0; gap: 6px; }
.town-now-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--purple-deep); font: 9px var(--mono); }
.town-now-meta time { color: var(--muted); white-space: nowrap; }
.town-now-copy strong { display: -webkit-box; overflow: hidden; color: var(--ink); font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.town-now-copy small { overflow: hidden; color: var(--muted); font: 9px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.town-now-link { white-space: nowrap; }
.town-room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding-top: 14px; }
.town-room-card { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 11px; min-width: 0; padding: 9px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .58); }
.town-room-art { position: relative; display: grid; place-items: center; width: 58px; height: 58px; overflow: hidden; border-radius: 13px; background: linear-gradient(145deg, #e9eaff, #b9cbff); color: var(--purple-deep); font: 11px var(--mono); }
.town-room-art::after { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(35, 50, 115, .25)); content: ""; }
.town-room-art img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.town-room-art span { z-index: 0; max-width: 46px; overflow: hidden; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.town-room-copy { display: grid; min-width: 0; gap: 7px; }
.town-room-head { display: flex; align-items: start; justify-content: space-between; gap: 7px; }
.town-room-head strong { overflow: hidden; color: var(--ink); font-size: 11px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.town-room-head span { flex: 0 0 auto; color: var(--green); font: 8px var(--mono); }
.town-room-copy p { display: -webkit-box; overflow: hidden; min-height: 25px; margin: 0; color: var(--ink-soft); font-size: 9px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.town-room-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 7px; border-top: 1px solid var(--line); }
.town-room-foot small { overflow: hidden; color: var(--muted); font: 8px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.town-room-foot .text-link { font-size: 8px; }
.town-empty { grid-column: 1 / -1; }
.town-empty .empty-state { min-height: 0; padding: 16px 0 4px; border: 0; background: transparent; }
.town-map-summary { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-bottom: 13px; }
.town-map-room { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 11px 12px; border: 1px solid rgba(109, 123, 191, .38); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.town-map-room-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #73a6ea; box-shadow: 0 0 10px rgba(115, 166, 234, .62); }
.town-map-room div { display: grid; min-width: 0; gap: 4px; }
.town-map-room strong { overflow: hidden; color: var(--ink); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.town-map-room small { overflow: hidden; color: var(--muted); font: 8px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.town-map-room b { margin-left: auto; color: var(--purple-deep); font: 11px var(--mono); }
.oauth-actions-primary { grid-template-columns: 1fr 1fr; }
@media (max-width: 680px) {
  main > .section-block[data-view]:not([data-view="home"]) {
    min-height: calc(100dvh - 68px);
    max-height: none;
    padding-block: 48px;
  }
  .oauth-actions-primary { grid-template-columns: 1fr; }
}

/* Observatory layer: evidence cards and unavailable states stay informative without inventing data. */
.primary-nav { gap: 8px; }
.primary-nav a { padding-inline: 9px; font-size: 11px; }
.pulse-row { grid-template-columns: 128px minmax(0, 1fr) 190px 126px; }
.pulse-time-block, .pulse-context { display: grid; gap: 6px; align-content: center; min-width: 0; }
.pulse-category { color: var(--purple-deep); font: 9px var(--mono); letter-spacing: .1em; }
.pulse-signal > div:last-child { min-width: 0; }
.pulse-signal small { display: -webkit-box; overflow: hidden; color: var(--muted); line-height: 1.4; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.pulse-context span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pulse-context small { overflow: hidden; color: var(--muted); font: 9px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.pulse-context small b { color: var(--gold); font-weight: 500; letter-spacing: .08em; }
.pulse-actions { display: flex; align-items: center; justify-content: end; gap: 11px; }
.pulse-link { white-space: nowrap; }
.save-control { padding: 0; border: 0; background: transparent; color: var(--purple-deep); cursor: pointer; font: 9px var(--mono); letter-spacing: .06em; }
.save-control:hover, .save-control:focus-visible { color: var(--ink); text-decoration: underline; outline: 0; }
.digest-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.digest-card { display: grid; gap: 10px; min-height: 142px; padding: 18px; border: 1px solid rgba(205, 210, 230, .95); border-radius: 18px; background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(247, 248, 253, .68)); box-shadow: 0 12px 26px rgba(72, 85, 143, .06); }
.digest-card span, .availability-index { color: var(--gold); font: 9px var(--mono); letter-spacing: .13em; }
.digest-card strong { align-self: end; color: var(--ink); font: 700 clamp(23px, 3vw, 31px) var(--sans); letter-spacing: -.06em; }
.digest-card small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.intelligence-section { padding-block: 92px; }
.availability-panel { display: grid; grid-template-columns: 150px minmax(0, 1fr) 160px auto; align-items: center; gap: 24px; padding: 25px 27px; border: 1px solid rgba(205, 210, 230, .95); border-radius: 22px; background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(245, 247, 253, .7)); box-shadow: 0 15px 32px rgba(72, 85, 143, .07); }
.availability-panel strong { display: block; margin-bottom: 7px; color: var(--ink); font: 700 17px var(--sans); letter-spacing: -.035em; }
.availability-panel p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.availability-meta { display: grid; gap: 4px; color: var(--muted); font: 8px var(--mono); letter-spacing: .1em; }
.availability-meta b { margin-bottom: 5px; color: var(--purple-deep); font-weight: 500; }
.availability-panel-dark { border-color: rgba(106, 115, 180, .5); background: linear-gradient(135deg, #1a234b, #293572); box-shadow: 0 21px 40px rgba(27, 37, 86, .16); }
.availability-panel-dark strong { color: #f4f6ff; }
.availability-panel-dark p { color: rgba(225, 231, 255, .7); }
.availability-panel-dark .availability-meta { color: rgba(225, 231, 255, .54); }
.availability-panel-dark .availability-meta b { color: #c5c1ff; }
.availability-panel-dark .text-link { color: #e8e5ff; }
.intelligence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.evidence-card { display: flex; flex-direction: column; min-height: 265px; padding: 21px; border: 1px solid rgba(205, 210, 230, .95); border-radius: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(246, 247, 253, .74)); box-shadow: 0 15px 30px rgba(72, 85, 143, .07); }
.evidence-card-featured { grid-column: span 2; background: linear-gradient(135deg, #fffdf5, #eef0ff 75%); }
.evidence-card-dark { border-color: rgba(106, 115, 180, .5); background: linear-gradient(135deg, #1a234b, #293572); box-shadow: 0 21px 40px rgba(27, 37, 86, .16); }
.evidence-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; color: var(--gold); font: 9px var(--mono); letter-spacing: .12em; }
.evidence-card-top time { color: var(--muted); letter-spacing: 0; white-space: nowrap; }
.evidence-card-dark .evidence-card-top time { color: rgba(225, 231, 255, .54); }
.evidence-card h3 { margin: 0 0 10px; color: var(--ink); font: 700 18px/1.2 var(--sans); letter-spacing: -.04em; overflow-wrap: anywhere; }
.evidence-card-dark h3 { color: #f4f6ff; }
.evidence-card p { min-height: 0; margin: 0 0 18px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; }
.evidence-card-dark p { color: rgba(225, 231, 255, .7); }
.evidence-card-meta { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font: 9px var(--mono); }
.evidence-card-dark .evidence-card-meta { border-color: rgba(214, 224, 255, .16); color: rgba(225, 231, 255, .62); }
.evidence-card-meta span + span { position: relative; padding-left: 12px; }
.evidence-card-meta span + span::before { position: absolute; left: 0; content: "·"; color: var(--gold); }
.evidence-card-actions { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 14px; }
.evidence-card-actions .text-link { align-self: flex-start; }
.evidence-card-dark .text-link { color: #e8e5ff; }
.channel-description { display: -webkit-box; overflow: hidden; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.intelligence-grid > .availability-panel { grid-column: 1 / -1; }
.community-public-block { display: grid; gap: 17px; margin-top: 38px; padding-top: 31px; border-top: 1px solid var(--line); }
.community-public-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.community-public-head h3 { margin: 8px 0 5px; color: var(--ink); font: 700 24px var(--sans); letter-spacing: -.04em; }
.community-public-head p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.community-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.community-card { display: flex; flex-direction: column; min-height: 205px; padding: 18px; border: 1px solid rgba(205, 210, 230, .95); border-radius: 18px; background: linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(246, 247, 253, .72)); box-shadow: 0 12px 25px rgba(72, 85, 143, .05); }
.community-card-image, .account-record-image { width: 100%; height: 130px; margin: -2px 0 16px; border-radius: 13px; object-fit: cover; background: #e8ebf7; }
.community-card-top { display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.public-dot { color: var(--green-deep); font: 9px var(--mono); letter-spacing: .08em; }
.community-card h3 { margin: 18px 0 8px; color: var(--ink); font: 700 17px/1.25 var(--sans); letter-spacing: -.03em; overflow-wrap: anywhere; }
.community-card p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.55; overflow-wrap: anywhere; }
.community-card-meta { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: auto; padding-top: 14px; color: var(--muted); font: 9px var(--mono); }
.community-card-meta span + span { position: relative; padding-left: 11px; }
.community-card-meta span + span::before { position: absolute; left: 0; content: "·"; color: var(--gold); }
.record-lineage { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--muted); font: 8px var(--mono); letter-spacing: .06em; }
.record-lineage span { color: var(--gold); }
.record-lineage strong { color: var(--purple-deep); font-weight: 500; text-align: right; }
.community-card-actions { display: flex; gap: 14px; margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line); }
.community-empty { grid-column: 1 / -1; padding: 21px; border: 1px dashed #c6d2f0; border-radius: 17px; background: rgba(255, 255, 255, .48); }
.community-empty strong { color: var(--ink); font: 600 13px var(--sans); }
.community-empty p { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.workspace-content { display: grid; gap: 14px; }
.workspace-auth-prompt { display: grid; gap: 14px; max-width: 620px; padding: 28px; border: 1px dashed #c6d2f0; border-radius: 20px; background: rgba(255, 255, 255, .58); }
.workspace-auth-prompt strong { color: var(--ink); font: 700 20px var(--sans); letter-spacing: -.04em; }
.workspace-auth-prompt p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.workspace-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.workspace-stat { display: grid; gap: 8px; min-height: 118px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .72); }
.workspace-stat span { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; }
.workspace-stat strong { color: var(--ink); font: 700 28px var(--sans); letter-spacing: -.05em; }
.workspace-stat small { color: var(--ink-soft); font-size: 10px; }
.workspace-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.workspace-actions span { color: var(--muted); font: 9px var(--mono); }
.workspace-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.workspace-panel { min-height: 150px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .72); }
.workspace-panel h3 { margin: 0 0 12px; color: var(--muted); font: 9px var(--mono); letter-spacing: .12em; }
.workspace-panel p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.workspace-panel .text-link { display: inline-block; margin-top: 18px; }
.account-view { min-height: calc(100dvh - 82px); padding-block: 76px; }
.account-view[hidden] { display: none; }
.account-shell { display: grid; gap: 26px; }
.account-tabs { display: flex; flex-wrap: wrap; gap: 7px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.account-tabs a { padding: 9px 11px; border: 1px solid transparent; border-radius: 14px; color: var(--muted); font: 9px var(--mono); letter-spacing: .06em; }
.account-tabs a:hover, .account-tabs a:focus-visible, .account-tabs a.active { border-color: rgba(108, 105, 239, .35); background: rgba(255, 255, 255, .72); color: var(--purple-deep); outline: 0; }
.account-hero, .account-page-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; }
.account-hero h2, .account-page-head h2 { max-width: 720px; margin: 10px 0 8px; font-size: clamp(35px, 5vw, 66px); }
.account-hero p, .account-page-head p { max-width: 620px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.account-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.account-stat-grid > div { display: grid; gap: 8px; min-height: 125px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(245, 247, 253, .7)); }
.account-stat-grid span { color: var(--gold); font: 9px var(--mono); letter-spacing: .12em; }
.account-stat-grid strong { align-self: end; color: var(--ink); font: 700 31px var(--sans); letter-spacing: -.06em; }
.account-stat-grid small { color: var(--muted); font-size: 10px; }
.account-quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.account-quick-grid a { display: grid; gap: 9px; min-height: 126px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .58); transition: border-color .2s, transform .2s, background .2s; }
.account-quick-grid a:hover, .account-quick-grid a:focus-visible { border-color: var(--purple); background: #fff; outline: 0; transform: translateY(-2px); }
.account-quick-grid strong { color: var(--ink); font: 700 12px var(--sans); }
.account-quick-grid small { color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.account-record-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.account-record-card { display: flex; flex-direction: column; min-height: 230px; padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 255, 255, .72); box-shadow: 0 12px 28px rgba(72, 85, 143, .05); }
.account-record-image { height: 150px; margin: -2px 0 19px; }
.account-record-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.account-record-card h3 { margin: 22px 0 9px; color: var(--ink); font: 700 21px/1.2 var(--sans); letter-spacing: -.04em; overflow-wrap: anywhere; }
.account-record-card p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; overflow-wrap: anywhere; }
.account-record-meta { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-top: auto; padding-top: 18px; color: var(--muted); font: 9px var(--mono); }
.account-record-meta span + span { position: relative; padding-left: 12px; }
.account-record-meta span + span::before { position: absolute; left: 0; content: "·"; color: var(--gold); }
.account-record-actions { display: flex; gap: 14px; margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line); }
.account-empty, .account-auth { display: grid; gap: 13px; max-width: 700px; padding: 31px; border: 1px dashed #c6d2f0; border-radius: 22px; background: rgba(255, 255, 255, .6); }
.account-empty-mark { color: var(--purple); font-size: 29px; }
.account-empty h3, .account-auth h2 { margin: 0; color: var(--ink); font: 700 25px var(--sans); letter-spacing: -.04em; }
.account-empty p, .account-auth p { max-width: 580px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.saved-list, .settings-list { display: grid; gap: 9px; max-width: 820px; }
.saved-row, .settings-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .7); }
.saved-row > div, .settings-row > div { display: grid; gap: 6px; min-width: 0; }
.saved-row-actions { display: flex !important; align-items: center; justify-content: flex-end; gap: 14px; flex: 0 0 auto; }
.saved-row strong, .settings-row strong { color: var(--ink); font: 600 13px var(--sans); overflow-wrap: anywhere; }
.saved-row small, .settings-row small { color: var(--muted); font: 9px var(--mono); overflow-wrap: anywhere; }
.account-profile-card { display: flex; align-items: center; gap: 18px; max-width: 760px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .72); }
.account-profile-avatar { display: grid; flex: 0 0 72px; place-items: center; width: 72px; height: 72px; border-radius: 24px; background: linear-gradient(135deg, #7772ea, #b6c6ff); color: #fff; font: 700 27px var(--sans); }
.account-profile-avatar img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.account-profile-card strong { color: var(--ink); font: 700 20px var(--sans); }
.account-profile-card p { margin: 8px 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.account-profile-card small { color: var(--muted); font: 9px var(--mono); }
.public-human-heading { display: flex; align-items: center; gap: 16px; }
.public-human-avatar { width: 68px; height: 68px; border-radius: 22px; object-fit: cover; box-shadow: 0 10px 20px rgba(72, 85, 143, .14); }
.danger-link { color: var(--danger) !important; }
.thread-meta { margin: 8px 0 18px; color: var(--muted); font: 10px/1.5 var(--mono); }
.thread-posts { min-height: 0; overflow-y: auto; padding: 3px 8px 10px 0; scrollbar-color: #a7b9ed transparent; scrollbar-width: thin; }
.thread-posts::-webkit-scrollbar { width: 8px; }
.thread-posts::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 8px; background: #a7b9ed; background-clip: padding-box; }
.thread-post { margin: 0 0 10px clamp(0px, calc(var(--thread-depth) * 22px), 66px); padding: 16px 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .68); }
.thread-post-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: var(--muted); font: 9px var(--mono); }
.thread-post-author { color: var(--ink); font: 600 12px var(--sans); }
.thread-post-body { color: var(--ink-soft); font-size: 12px; line-height: 1.7; overflow-wrap: anywhere; white-space: pre-wrap; }
.thread-source { align-self: flex-start; flex: 0 0 auto; margin-top: 8px; }
.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; overscroll-behavior: contain; background: rgba(14, 19, 48, .42); backdrop-filter: blur(12px); }
.modal-backdrop[hidden] { display: none; }
.modal-card { position: relative; width: min(100%, 500px); padding: 31px; touch-action: pan-y; border: 1px solid rgba(255, 255, 255, .7); border-radius: 24px; background: linear-gradient(145deg, #fff, #f1f3ff); box-shadow: 0 28px 70px rgba(18, 26, 73, .26); }
.thread-modal-card { display: flex; flex-direction: column; width: min(100%, 820px); max-height: min(88vh, 900px); }
.modal-card h2 { max-width: 390px; margin-top: 12px; font-size: clamp(34px, 6vw, 52px); }
.modal-close { position: absolute; top: 13px; right: 16px; width: 33px; height: 33px; border: 0; border-radius: 50%; background: rgba(225, 229, 247, .8); color: var(--ink-soft); cursor: pointer; font-size: 23px; line-height: 1; }
.modal-copy { max-width: 410px; margin: 14px 0 22px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.auth-form { display: grid; gap: 9px; }
.auth-form label { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.auth-form input { min-height: 46px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 13px; outline: 0; background: #fff; color: var(--ink); font-size: 13px; }
.auth-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108, 105, 239, .1); }
.auth-form .button { margin-top: 5px; }
.profile-form { display: grid; gap: 15px; max-height: min(62vh, 560px); overflow-y: auto; padding-right: 3px; }
.profile-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.profile-form label { display: grid; gap: 6px; color: var(--muted); font: 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.profile-form label span { color: var(--muted); font-size: 8px; letter-spacing: 0; text-transform: none; }
.profile-form-wide { grid-column: 1 / -1; }
.profile-form input, .profile-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line-strong); border-radius: 12px; outline: 0; background: #fff; color: var(--ink); font: 12px var(--sans); letter-spacing: 0; text-transform: none; }
.profile-form textarea { min-height: 75px; resize: vertical; }
.profile-form input:focus, .profile-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108, 105, 239, .1); }
.profile-form input[type="file"] { padding: 8px; font-size: 11px; }
.profile-avatar-preview { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 8px 10px; border: 1px dashed var(--line-strong); border-radius: 13px; color: var(--muted); font: 9px var(--mono); }
.profile-avatar-preview img { width: 48px; height: 48px; border-radius: 16px; object-fit: cover; }
.create-image-preview { display: flex; align-items: center; gap: 12px; min-height: 62px; padding: 8px 10px; border: 1px dashed var(--line-strong); border-radius: 13px; color: var(--muted); font: 9px var(--mono); }
.create-image-preview img { width: 100px; height: 62px; border-radius: 11px; object-fit: cover; }
.profile-form select { width: 100%; height: 42px; padding: 0 12px; border-radius: 12px; background: #fff; font: 12px var(--sans); letter-spacing: 0; text-transform: none; }
.create-form { max-height: min(62vh, 580px); }
.create-form .form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.create-form .form-actions .button { flex: 1 1 180px; }
.create-form .form-actions .text-link { flex: 0 0 auto; }
.create-form .publish-note { margin: -4px 0 0; color: var(--muted); font: 9px/1.5 var(--mono); }
.create-form .checkbox-label { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 9px; color: var(--ink-soft); font: 10px var(--sans); letter-spacing: 0; text-transform: none; }
.create-form .checkbox-label input { width: 16px; height: 16px; padding: 0; accent-color: var(--purple); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 21px 0 15px; color: var(--muted); font: 9px var(--mono); }
.auth-divider::before, .auth-divider::after { flex: 1; height: 1px; background: var(--line); content: ""; }
.oauth-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.oauth-actions .button { min-height: 42px; padding-inline: 10px; font-size: 10px; }
.oauth-actions .button:disabled { cursor: not-allowed; opacity: .52; transform: none; }
.form-status { min-height: 18px; margin: 15px 0 0; color: var(--purple-deep); font: 10px/1.5 var(--mono); }
.form-status-error { color: var(--danger); }
.create-options { display: grid; gap: 9px; }
.create-options button { display: grid; gap: 5px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, .74); color: var(--ink); text-align: left; cursor: pointer; transition: border-color .2s, transform .2s, background .2s; }
.create-options button:hover, .create-options button:focus-visible { border-color: var(--purple); background: #fff; outline: 0; transform: translateX(3px); }
.create-options strong { font: 700 12px var(--sans); letter-spacing: .02em; }
.create-options small { color: var(--ink-soft); font-size: 11px; }
.for-muses-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); }
.for-muses-grid a { display: grid; gap: 12px; min-height: 150px; padding: 18px 16px 12px 0; border-right: 1px solid var(--line); transition: background .2s, padding .2s; }
.for-muses-grid a + a { padding-left: 16px; }
.for-muses-grid a:last-child { border-right: 0; }
.for-muses-grid a:hover { background: rgba(255, 255, 255, .42); }
.for-muses-grid span { color: var(--gold); font: 10px var(--mono); }
.for-muses-grid strong { color: var(--ink); font: 700 14px var(--sans); }
.for-muses-grid small { color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.passport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 13px; }
.passport-metric { display: grid; gap: 8px; min-height: 115px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .7); }
.passport-metric span { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; }
.passport-metric strong { color: var(--ink); font: 700 20px var(--sans); letter-spacing: -.04em; }
.passport-metric small { color: var(--ink-soft); font-size: 10px; line-height: 1.45; }
.profile-source { display: flex; align-items: center; gap: 12px; margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font: 9px var(--mono); }
.profile-source span { color: var(--gold); letter-spacing: .12em; }
.profile-source strong { color: var(--ink-soft); font-weight: 500; }
.methodology-states { display: flex; flex-wrap: wrap; grid-column: 1 / -1; gap: 10px 18px; margin-top: 7px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font: 9px var(--mono); letter-spacing: .04em; }
.methodology-states span { display: inline-flex; align-items: center; gap: 7px; }
.methodology-states i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.methodology-states .state-recent { background: var(--orange); }
.methodology-states .state-snapshot { background: var(--gold); }
.methodology-states .state-offline { background: var(--danger); }

@media (max-width: 1000px) {
  .digest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .town-now-layout { grid-template-columns: 1fr; }
  .town-map-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intelligence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-record-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .for-muses-grid { grid-template-columns: repeat(3, 1fr); }
  .for-muses-grid a:nth-child(3) { border-right: 0; }
  .for-muses-grid a:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .availability-panel { grid-template-columns: 140px minmax(0, 1fr) 140px; }
  .availability-panel .text-link { grid-column: 2 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  .primary-nav a { font-size: 12px; }
  .town-now-section { padding-top: 48px; }
  .town-room-grid, .town-map-summary { grid-template-columns: 1fr; }
  .town-now-item { grid-template-columns: 9px minmax(0, 1fr); }
  .town-now-link { grid-column: 2; justify-self: start; }
  .record-lineage { align-items: start; flex-direction: column; gap: 5px; }
  .record-lineage strong { text-align: left; }
  .pulse-row { grid-template-columns: 1fr auto; gap: 10px 12px; }
  .pulse-time-block { grid-column: 1 / -1; grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
  .pulse-signal { grid-column: 1; }
  .pulse-context { grid-column: 1; padding-left: 42px; }
  .pulse-link { grid-column: 2; grid-row: 2 / span 2; }
  .digest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intelligence-grid { grid-template-columns: 1fr; }
  .evidence-card-featured { grid-column: auto; }
  .workspace-grid, .workspace-panels { grid-template-columns: 1fr; }
  .account-view { min-height: calc(100dvh - 68px); padding-block: 48px; }
  .account-hero, .account-page-head { align-items: start; flex-direction: column; }
  .account-stat-grid, .account-quick-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .community-public-head { align-items: start; flex-direction: column; }
  .account-profile-card { align-items: start; flex-direction: column; }
  .saved-row, .settings-row { align-items: start; flex-direction: column; }
  .saved-row-actions { width: 100%; justify-content: space-between; }
  .modal-card { padding: 25px 20px; }
  .thread-modal-card { max-height: 92vh; }
  .oauth-actions { grid-template-columns: 1fr; }
  .profile-form-grid { grid-template-columns: 1fr; }
  .profile-form-wide { grid-column: auto; }
  .modal-backdrop { align-items: flex-start; overflow-y: auto; padding: 16px 12px; }
  .modal-card { max-height: calc(100dvh - 32px); overflow: hidden; }
  .profile-form { max-height: calc(100dvh - 215px); overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .profile-form input, .profile-form textarea, .profile-form select { font-size: 16px; }
  .digest-card { min-height: 128px; padding: 14px; }
  .digest-card strong { font-size: 23px; }
  .availability-panel { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .availability-panel .text-link { grid-column: auto; }
  .for-muses-grid { grid-template-columns: repeat(2, 1fr); }
  .for-muses-grid a:nth-child(3) { border-right: 1px solid var(--line); }
  .for-muses-grid a:nth-child(2n) { border-right: 0; padding-left: 16px; }
  .for-muses-grid a:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .passport-grid { grid-template-columns: repeat(2, 1fr); }
  .passport-metric { min-height: 105px; padding: 13px; }
  .passport-metric strong { font-size: 16px; }
  .methodology-states { display: grid; gap: 10px; }
}

/* Graph observatory: the panel is a visual instrument, not an empty SVG box. */
main > .section-block.radar-section[data-view="graph"] > .radar-panel { min-height: 570px; isolation: isolate; }
.radar-panel::after { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 50% 48%, rgba(125, 235, 224, .08), transparent 28%), linear-gradient(90deg, transparent 49.94%, rgba(219, 226, 255, .08) 50%, transparent 50.06%); content: ""; pointer-events: none; }
.radar-panel-head { position: absolute; top: 18px; right: 22px; left: 22px; z-index: 4; display: flex; justify-content: space-between; gap: 16px; color: rgba(224, 231, 255, .72); font: 9px var(--mono); letter-spacing: .12em; }
.radar-panel-head span { display: inline-flex; align-items: center; gap: 8px; }
.radar-panel-head strong { color: rgba(224, 231, 255, .48); font-weight: 400; }
.radar-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #7be5d7; box-shadow: 0 0 0 4px rgba(123, 229, 215, .12), 0 0 13px rgba(123, 229, 215, .7); }
.network-graph { z-index: 1; padding: 50px 24px 58px; }
.network-graph svg { overflow: visible; }
.graph-orbit { fill: none; stroke: rgba(219, 226, 255, .13); stroke-width: 1; stroke-dasharray: 2 10; vector-effect: non-scaling-stroke; }
.graph-orbit-outer { stroke: rgba(154, 148, 255, .2); animation: graph-orbit-drift 24s linear infinite; transform-origin: 50% 50%; }
.graph-orbit-inner { stroke: rgba(231, 189, 120, .2); stroke-dasharray: 1 8; animation: graph-orbit-drift-reverse 18s linear infinite; transform-origin: 50% 50%; }
.graph-orbit-core { fill: none; stroke: rgba(123, 229, 215, .16); stroke-dasharray: 1 7; }
.graph-core-glow { fill: url(#graph-core-glow); opacity: .9; }
.graph-links { pointer-events: none; }
.graph-link { stroke: rgba(210, 222, 255, .35); stroke-width: 1.1; stroke-dasharray: 2 8; stroke-linecap: round; animation: graph-link-flow 7s linear infinite; vector-effect: non-scaling-stroke; }
.graph-node { cursor: pointer; outline: none; }
.graph-node-halo { fill: rgba(255, 255, 255, .08); stroke: rgba(255, 255, 255, .18); stroke-width: 1; opacity: .9; transition: fill .2s, stroke .2s, stroke-width .2s; }
.graph-node-pulse { fill: none; stroke: rgba(123, 229, 215, .3); stroke-width: 1; opacity: .65; animation: graph-node-breathe 3.8s ease-in-out infinite; vector-effect: non-scaling-stroke; }
.graph-node.muse .graph-node-halo { stroke: rgba(152, 145, 255, .58); }
.graph-node.channel .graph-node-halo { stroke: rgba(232, 190, 121, .64); }
.graph-node:hover .graph-node-halo, .graph-node:focus .graph-node-halo { fill: rgba(255, 255, 255, .2); stroke: #fff; stroke-width: 2; }
.graph-node:hover .graph-node-pulse, .graph-node:focus .graph-node-pulse { opacity: 1; stroke-width: 2; }
.graph-node-ring { fill: rgba(17, 24, 51, .72); stroke-width: 1.5; }
.graph-node.muse .graph-node-ring { stroke: #9a94ff; }
.graph-node.channel .graph-node-ring { stroke: #e7bd78; }
.graph-initial { fill: #f4f5ff; font: 13px var(--mono); text-anchor: middle; }
.graph-label-bg { fill: rgba(10, 17, 43, .82); stroke: rgba(219, 226, 255, .23); }
.graph-label { fill: #eef1ff; font: 9px var(--mono); letter-spacing: .01em; text-anchor: middle; }
.graph-core-mark { pointer-events: none; }
.graph-core-halo { fill: rgba(116, 232, 223, .1); stroke: rgba(116, 232, 223, .42); stroke-width: 1; }
.graph-core { fill: rgba(17, 30, 66, .9); stroke: #8fe8dd; stroke-width: 1.2; }
.graph-core-label { fill: #e8fffb; font: 500 9px var(--mono); letter-spacing: .08em; text-anchor: middle; }
.graph-core-subtitle { fill: rgba(155, 232, 223, .7); font: 7px var(--mono); letter-spacing: .1em; text-anchor: middle; }
.radar-empty { z-index: 3; }
.radar-foot { z-index: 4; }
@keyframes graph-link-flow { to { stroke-dashoffset: -24; } }
@keyframes graph-orbit-drift { to { transform: rotate(360deg); } }
@keyframes graph-orbit-drift-reverse { to { transform: rotate(-360deg); } }
@keyframes graph-node-breathe { 0%, 100% { opacity: .35; transform: scale(.94); transform-origin: center; } 50% { opacity: .85; transform: scale(1.08); transform-origin: center; } }
@media (prefers-reduced-motion: reduce) {
  .graph-link, .graph-orbit-outer, .graph-orbit-inner, .graph-node-pulse { animation: none; }
}
@media (max-width: 680px) {
  main > .section-block.radar-section[data-view="graph"] > .radar-panel { min-height: 500px; }
  .radar-panel-head { top: 14px; right: 16px; left: 16px; font-size: 8px; }
  .radar-panel-head strong { display: none; }
  .network-graph { padding: 42px 4px 58px; }
  .radar-section > .radar-panel .radar-foot { right: 16px; bottom: 14px; left: 16px; }
}

/* Stronger editorial type and simpler controls keep the page readable at a glance. */
h1 {
  max-width: 620px;
  font-family: var(--sans);
  font-size: clamp(54px, 8vw, 98px);
  line-height: .88;
  letter-spacing: -.09em;
  font-weight: 800;
}
h1 span { color: var(--purple-deep); text-shadow: none; }
h2, .account-hero h2, .account-page-head h2, .modal-card h2 { font-family: var(--sans); font-weight: 800; line-height: .94; letter-spacing: -.075em; }
h3, .community-public-head h3 { font-weight: 800; letter-spacing: -.045em; }
.hero-lede, .section-intro { font-size: 15px; line-height: 1.7; }
.primary-nav { color: var(--ink); font-weight: 600; }
.primary-nav a { font-size: 11px; }
.button, .topbar-cta { border-radius: 12px; font-weight: 800; }
.button { min-height: 50px; text-transform: uppercase; letter-spacing: .04em; }
.section-block { padding-block: 96px; }
.section-heading { margin-bottom: 34px; }
.muse-card, .channel-card, .evidence-card, .community-card, .town-now-panel { border-radius: 16px; }
.card-title, .channel-name, .evidence-card h3, .community-card h3, .town-now-copy strong { font-weight: 800; }
.data-badge { border-radius: 8px; font-weight: 600; }

@media (max-width: 680px) {
  h1 { font-size: clamp(45px, 15vw, 70px); letter-spacing: -.085em; }
  h2, .account-hero h2, .account-page-head h2, .modal-card h2 { letter-spacing: -.065em; }
  .section-block { padding-block: 72px; }
}
