@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700;900&display=swap');

:root {
  --ink: #17211d;
  --muted: #69736e;
  --line: #dfe5e1;
  --paper: #f5f7f4;
  --white: #ffffff;
  --green: #143f32;
  --lime: #c8f169;
  --orange: #ff7043;
  --blue: #6fc6e9;
  --violet: #a78bfa;
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--paper); }
button, input, select { font: inherit; }
button { cursor: pointer; }

.topbar { height: 76px; padding: 0 34px; display: grid; grid-template-columns: 250px minmax(280px, 620px) 1fr; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.9); backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 10; }
.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; font-weight: 900; font-size: 18px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--lime); background: var(--green); border-radius: 12px 4px 12px 4px; font-size: 21px; }
.brand small { display: block; font-size: 8px; letter-spacing: 1.7px; color: var(--muted); font-weight: 600; }
.search-wrap { height: 44px; border: 1px solid var(--line); background: #f7f9f7; border-radius: 12px; display: flex; align-items: center; padding: 0 12px; gap: 10px; color: #87918c; }
.search-wrap input { border: 0; outline: 0; background: transparent; flex: 1; color: var(--ink); }
kbd { background: white; border: 1px solid var(--line); border-radius: 5px; padding: 3px 7px; font-size: 10px; }
.top-actions { display: flex; justify-content: flex-end; gap: 10px; align-items: center; }
.sync-pill { font-size: 11px; background: #edf7f1; color: #246347; padding: 7px 11px; border-radius: 999px; font-weight: 700; }
.sync-pill i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #39a86b; margin-right: 6px; box-shadow: 0 0 0 3px #d8eee1; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: white; }
.eyebrow { color: #4e655d; font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }
.primary-btn { border: 0; border-radius: 10px; padding: 12px 17px; background: var(--green); color: white; font-weight: 700; }
.primary-btn.wide { width: 100%; margin-top: 22px; }

/* Variant A */
.shell-a { display: grid; grid-template-columns: 88px 1fr; min-height: calc(100vh - 76px); }
.nav-rail { border-right: 1px solid var(--line); background: white; padding: 28px 12px 110px; display: flex; flex-direction: column; justify-content: space-between; }
.rail-links { display: grid; gap: 8px; }
.rail-links button { border: 0; background: transparent; color: #7a847f; padding: 11px 4px; border-radius: 10px; font-size: 17px; }
.rail-links span { display: block; font-size: 10px; margin-top: 4px; }
.rail-links .active { background: #eaf5ef; color: var(--green); }
.rail-source { text-align: center; padding: 12px 4px; border-top: 1px solid var(--line); }
.rail-source span,.rail-source small { display: block; font-size: 8px; color: var(--muted); }
.rail-source strong { display: block; font-size: 15px; margin: 5px 0; }
.workspace-a { padding: 38px 42px 110px; max-width: 1500px; width: 100%; margin: auto; }
.page-intro { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.page-intro h1 { font-size: clamp(30px,4vw,48px); line-height: 1.05; letter-spacing: -2px; margin: 7px 0 8px; }
.page-intro p { margin: 0; color: var(--muted); }
.control-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.segmented { padding: 4px; border: 1px solid var(--line); border-radius: 11px; background: white; display: inline-flex; }
.segmented button { border: 0; background: transparent; padding: 8px 14px; border-radius: 8px; color: var(--muted); }
.segmented .active { background: var(--green); color: white; }
.platform-segmented { gap: 5px; }
.platform-segmented button { font-size: 13px; font-weight: 850; min-width: 112px; padding: 10px 15px; }
.platform-segmented .filter-mobile { color: #754737; background: #f3e8e2; box-shadow: inset 0 0 0 1px #d8bdb1; }
.platform-segmented .filter-steam { color: #0f4f80; background: #e8f4ff; box-shadow: inset 0 0 0 1px #a7d2f1; }
.platform-segmented .filter-mobile.active { color: white; background: #9a604b; box-shadow: 0 5px 14px rgba(126,79,61,.18); }
.platform-segmented .filter-steam.active { color: white; background: #12669f; box-shadow: 0 5px 14px rgba(18,102,159,.25); }
.platform-segmented .filter-all.active { background: var(--green); color: white; }
.select-label { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); }
.select-label select { border: 1px solid var(--line); border-radius: 8px; background: white; padding: 8px 28px 8px 10px; color: var(--ink); }
.overview-strip { display: grid; grid-template-columns: 150px 180px 150px 1fr; gap: 0; align-items: stretch; background: var(--green); color: white; border-radius: 14px; margin-bottom: 20px; overflow: hidden; }
.overview-strip > div { padding: 15px 18px; border-right: 1px solid rgba(255,255,255,.13); }
.overview-strip span { display: block; color: #aebfb7; font-size: 9px; }
.overview-strip strong { display: block; font-size: 23px; margin-top: 3px; }
.overview-strip .metric-mobile span { color: #ffbca6; font-weight: 700; }.overview-strip .metric-steam span { color: #9bd4ff; font-weight: 700; }
.overview-strip p { margin: 0; padding: 17px 20px; display: flex; align-items: center; justify-content: flex-end; color: #b9c9c1; font-size: 10px; }
.overview-strip p i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,241,105,.12); margin-right: 10px; }
.calendar-layout { display: grid; grid-template-columns: minmax(330px, .7fr) minmax(560px, 1.3fr); gap: 20px; align-items: start; }
.calendar-side { position: sticky; top: 96px; display: grid; gap: 14px; }
.calendar-card,.agenda-panel { border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 18px 50px rgba(29,53,43,.05); }
.calendar-card { padding: 22px; }
.month-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; }
.month-head button,.agenda-head button { border: 1px solid var(--line); background: white; border-radius: 9px; padding: 7px 12px; color: var(--muted); }
.month-head div { display: flex; align-items: baseline; gap: 8px; }
.month-head strong { font-size: 22px; }
.month-head small { color: var(--muted); }
.week-labels,.month-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.week-labels span { text-align: center; font-size: 10px; color: var(--muted); padding: 7px; }
.day { aspect-ratio: 1.16; border: 0; border-radius: 10px; background: transparent; color: var(--ink); position: relative; }
.day:hover { background: #f1f5f2; }
.day.selected { background: var(--green); color: white; }
.day i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); position: absolute; bottom: 6px; left: calc(50% - 2px); }
.day.selected i { background: var(--lime); }
.calendar-legend { display: flex; gap: 20px; border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; font-size: 10px; color: var(--muted); }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 5px; }
.dot.hot { background: var(--orange); }
.agenda-panel { overflow: hidden; }
.agenda-head { display: flex; justify-content: space-between; padding: 22px 24px 17px; border-bottom: 1px solid var(--line); }
.agenda-head span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.agenda-head h2 { margin: 5px 0 0; font-size: 21px; }
.agenda-list { padding: 7px 18px 18px; }
.view-toggle { display: flex; align-self: center; padding: 3px; background: #f0f3f1; border-radius: 9px; }
.view-toggle button { border: 0; padding: 7px 11px; background: transparent; color: var(--muted); }
.view-toggle button.active { background: white; color: var(--green); box-shadow: 0 2px 8px rgba(20,63,50,.1); }
.source-summary { border: 1px solid var(--line); background: #eef4f0; border-radius: 14px; padding: 16px 18px; }
.source-summary > div { display: flex; justify-content: space-between; align-items: center; }.source-summary span { color: var(--muted); font-size: 9px; }.source-summary strong { font-size: 12px; }.source-summary p { margin: 10px 0 4px; font-size: 10px; line-height: 1.6; }.source-summary small { color: var(--muted); font-size: 9px; }
.timeline-list { padding: 12px 0 4px; }
.timeline-group { display: grid; grid-template-columns: 62px 22px 1fr; gap: 8px; position: relative; padding: 10px 0 22px; scroll-margin-top: 104px; }
.timeline-date { text-align: right; padding-top: 3px; }.timeline-date span,.timeline-date strong,.timeline-date small { display: block; }.timeline-date span { color: var(--orange); font-size: 8px; font-weight: 900; letter-spacing: 1px; }.timeline-date strong { font-size: 26px; line-height: 1; margin: 3px 0 5px; }.timeline-date small { color: var(--muted); font-size: 8px; }
.timeline-node { position: relative; }.timeline-node::after { content: ""; position: absolute; top: 15px; bottom: -37px; left: 10px; width: 1px; background: #dce4df; }.timeline-group:last-child .timeline-node::after { display: none; }.timeline-node i { display: block; width: 11px; height: 11px; border-radius: 50%; border: 3px solid white; background: var(--orange); box-shadow: 0 0 0 1px var(--orange); margin: 6px 0 0 5px; position: relative; z-index: 1; }
.timeline-events { border: 1px solid #e2e8e4; border-radius: 13px; padding: 0 14px; background: #fbfcfb; }
.timeline-group.selected-group .timeline-events { border-color: #a9cbbd; box-shadow: 0 0 0 3px #edf6f1; }
.timeline-group-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding: 13px 2px 9px; }.timeline-group-head h3 { margin: 0; font-size: 14px; }.timeline-group-head h3 span { color: var(--muted); font-size: 9px; font-weight: 500; margin-left: 5px; }.timeline-group-head button { border: 0; background: transparent; color: #64726b; font-size: 9px; }
.event-card.compact { padding: 13px 2px; grid-template-columns: 42px 1fr auto; }.event-card.compact .mini-mark { width: 38px; height: 38px; border-radius: 10px; }.event-card.compact .event-title strong { font-size: 15px; }.event-card.compact .event-main p { margin-bottom: 5px; }
.event-card { display: grid; grid-template-columns: 48px 1fr auto; gap: 13px; padding: 16px 4px; border-bottom: 1px solid var(--line); align-items: center; color: inherit; transition: background .16s ease, transform .16s ease; }
.event-main { color: inherit; text-decoration: none; min-width: 0; }
.event-card:hover { background: #f7faf8; transform: translateX(2px); }
.event-card:focus-visible { outline: 2px solid #2b8063; outline-offset: 3px; border-radius: 8px; }
.event-card:last-child { border-bottom: 0; }
.event-card.is-assigned { margin: 3px -8px; padding: 16px 12px 16px 18px; border: 1px solid #91cdb2; border-left: 5px solid #23845e; border-radius: 11px; background: linear-gradient(90deg, #d9f2e5, rgba(255,255,255,.96) 72%); box-shadow: 0 9px 24px rgba(24,109,75,.13); }
.event-card.is-pinged { margin: 3px -8px; padding: 16px 12px 16px 18px; border: 1px solid #f0d39e; border-radius: 11px; background: linear-gradient(90deg, #fff4df, rgba(255,255,255,.96) 72%); box-shadow: 0 8px 22px rgba(155,104,25,.08); }
.event-card.is-assigned.is-pinged { border-color: #d6b75d; border-left-color: #23845e; background: linear-gradient(105deg, #d9f2e5 0%, #fff4df 58%, rgba(255,255,255,.96) 100%); }
.ping-chip { display: inline-flex; align-items: center; margin-left: 7px; padding: 2px 6px; border-radius: 999px; font-size: 8px; font-weight: 850; vertical-align: 2px; }
.ping-chip.普通 { color: #44677c; background: #e8f1f6; }.ping-chip.重要 { color: #9a6515; background: #fff0d5; }.ping-chip.紧急 { color: #a03436; background: #ffe4e4; }
.assignment-line { display: inline-flex; gap: 5px; align-items: center; margin-top: 7px; padding: 4px 7px; border-radius: 6px; background: #eef5f1; color: #547064; font-size: 9px; }.assignment-line b { color: #235f47; }.assignment-line span { color: #197d59; }.assignment-line em { color: #8a7b5c; font-style: normal; }
.card-actions { display: flex; justify-content: flex-end; gap: 5px; margin-top: 8px; }.card-actions button,.watch-meta button { border: 1px solid #d7e1dc; color: #547064; background: white; border-radius: 6px; padding: 4px 6px; font-size: 9px; }.card-actions button:last-child { color: #a26718; border-color: #efd5aa; }.card-actions button.active { color: #a03436; border-color: #efbcbc; background: #fff5f5; }
.rail-links button { position: relative; }.rail-links button b { position: absolute; top: 5px; right: 0; min-width: 15px; padding: 1px 3px; border-radius: 8px; color: white; background: #d77838; font-size: 8px; }
.watchlist-page { max-width: 1120px; }.watch-count { align-self: center; color: #a26718; border: 1px solid #efd5aa; background: #fffaf2; border-radius: 999px; padding: 8px 12px; font-size: 11px; font-weight: 800; }.watchlist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }.watch-card { border: 1px solid var(--line); border-left: 4px solid #e2ae62; border-radius: 14px; padding: 18px; background: white; box-shadow: 0 12px 32px rgba(29,53,43,.05); }.watch-card.level-紧急 { border-left-color: #d85d5f; }.watch-card h2 { margin: 13px 0 6px; font-size: 17px; }.watch-card p { min-height: 34px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }.watch-card-top,.watch-meta { display: flex; justify-content: space-between; align-items: center; gap: 7px; }.watch-card-top time { color: var(--muted); font-size: 10px; }.watch-meta { flex-wrap: wrap; margin-top: 15px; border-top: 1px solid var(--line); padding-top: 11px; color: #547064; font-size: 10px; }.watch-meta button { margin-left: auto; }.watch-meta button + button { margin-left: 0; }
.modal-backdrop { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 18px; background: rgba(17,34,26,.42); }.collaboration-modal { position: relative; width: min(440px, 100%); padding: 26px; border-radius: 18px; background: white; box-shadow: 0 24px 80px rgba(0,0,0,.22); }.collaboration-modal h2 { margin: 7px 0 3px; }.collaboration-modal > p { margin: 0 0 18px; color: var(--muted); font-size: 11px; }.collaboration-modal form { display: grid; gap: 12px; }.collaboration-modal label { display: grid; gap: 6px; color: #536058; font-size: 10px; font-weight: 800; }.collaboration-modal input,.collaboration-modal select,.collaboration-modal textarea { box-sizing: border-box; width: 100%; border: 1px solid #d7e1dc; border-radius: 8px; padding: 9px 10px; background: #fbfcfb; color: var(--ink); }.collaboration-modal textarea { min-height: 82px; resize: vertical; }.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 6px; }.modal-actions .primary-btn { display: block; border: 0; padding: 9px 15px; }.secondary-btn { border: 1px solid #d7e1dc; border-radius: 8px; background: white; padding: 8px 12px; color: #65736c; }.modal-close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; color: #728078; font-size: 25px; }
.variant-a .eyebrow { font-size: 11px; }.variant-a .page-intro p { font-size: 15px; line-height: 1.65; }.variant-a .overview-strip span,.variant-a .source-summary span,.variant-a .source-summary small { font-size: 11px; }.variant-a .overview-strip p,.variant-a .source-summary p { font-size: 12px; }.variant-a .agenda-head span { font-size: 11px; }.variant-a .timeline-date span,.variant-a .timeline-date small { font-size: 10px; }.variant-a .timeline-group-head h3 { font-size: 16px; }.variant-a .timeline-group-head h3 span,.variant-a .timeline-group-head button { font-size: 11px; }.variant-a .event-title strong { font-size: 18px; }.variant-a .event-main p { font-size: 13px; }.variant-a .event-meta,.variant-a .source-badge,.variant-a .event-side span,.variant-a .event-side small,.variant-a .card-actions button,.variant-a .assignment-line { font-size: 11px; }.variant-a .event-side strong { font-size: 15px; }.variant-a .platform-tag { font-size: 13px; }.variant-a .ping-chip { font-size: 10px; }
.mini-mark { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; padding: 0 3px; font-size: 10px; line-height: 1.05; text-align: center; letter-spacing: -.2px; font-weight: 900; color: #17382e; background: #e5ece8; }
.mark-ember { background: #ffd5c5; color: #8f3216; }.mark-lime { background: #e4f7b9; }.mark-sky { background: #c9ebf8; color: #115778; }.mark-violet { background: #e1d8ff; color: #49308d; }
.event-title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.event-title strong { font-size: 16px; }
.external-mark { margin-left: 5px; color: #608177; font-size: 10px; font-style: normal; opacity: 0; transition: opacity .16s ease; }
.event-card:hover .external-mark,.event-card:focus-visible .external-mark { opacity: 1; }
.platform-tag { font-size: 12px; line-height: 1.15; border: 1px solid; border-radius: 8px; padding: 7px 10px; font-weight: 900; letter-spacing: .25px; white-space: nowrap; }
.platform-mobile { color: #fff; background: #9a604b; border-color: #81503f; box-shadow: 0 4px 10px rgba(126,79,61,.16); }
.platform-steam { color: #fff; background: #12669f; border-color: #0c5689; box-shadow: 0 4px 10px rgba(18,102,159,.2); }
.event-card { position: relative; padding-left: 10px; }
.event-card::before { content: ""; position: absolute; left: 0; top: 19px; bottom: 19px; width: 3px; border-radius: 3px; }
.event-mobile::before { background: #a97059; }.event-steam::before { background: #2785c1; }
.event-main p,.radar-item p { margin: 4px 0 7px; color: var(--muted); font-size: 11px; }
.game-facts { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.company-name { color: #3f514b; font-weight: 700; }
.device-chip { color: #56635f; background: #eef2f0; border: 1px solid #dce5e1; border-radius: 5px; padding: 2px 5px; white-space: nowrap; }
.event-meta { display: flex; gap: 10px; align-items: center; font-size: 9px; color: var(--muted); }
.source-badge { font-size: 9px; color: #2d6a4f; white-space: nowrap; }
.source-badge i { display: inline-block; width: 6px; height: 6px; background: #54b982; border-radius: 50%; margin-right: 4px; box-shadow: 0 0 0 3px #e6f6ed; }
.event-side { text-align: right; }
.event-side strong { display: block; font-size: 13px; }
.event-side span { display: inline-block; margin-top: 5px; color: #ad3e1d; background: #fff0e9; padding: 3px 7px; border-radius: 5px; font-size: 9px; }
.event-side small { display: block; margin-top: 7px; color: #517269; font-size: 9px; font-weight: 700; white-space: nowrap; }
.empty { min-height: 220px; display: grid; place-content: center; text-align: center; color: var(--muted); gap: 6px; }

/* Variant B */
.variant-b { min-height: 100vh; background: #f5f2e9; }
.hero-b { padding: 58px clamp(30px,7vw,110px) 38px; background: var(--green); color: white; display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; }
.hero-copy h1 { font-size: clamp(42px,6vw,78px); letter-spacing: -4px; line-height: .98; margin: 14px 0 22px; max-width: 820px; }
.hero-copy h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 610px; color: #b9c9c1; line-height: 1.8; }
.variant-b .control-row { margin-top: 28px; justify-content: flex-start; }
.variant-b .segmented { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.variant-b .segmented button { color: #c4d0ca; }
.variant-b .segmented .active { background: var(--lime); color: var(--green); }
.variant-b .select-label { color: #b9c9c1; }
.signal-card { background: var(--lime); color: var(--green); padding: 25px; border-radius: 24px 8px 24px 8px; transform: rotate(1.5deg); align-self: center; box-shadow: 16px 18px 0 rgba(0,0,0,.16); }
.live-line { font-size: 10px; font-weight: 800; letter-spacing: 1.3px; }.live-line i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 7px; }
.giant-score { float: right; font-size: 52px; font-weight: 900; line-height: 1; }
.signal-card h2 { margin: 45px 0 5px; font-size: 27px; }.signal-card p { margin: 0 0 25px; font-size: 12px; }
.signal-stats { border-top: 1px solid rgba(20,63,50,.25); padding-top: 16px; display: flex; gap: 35px; }.signal-stats small,.signal-stats b { display: block; }.signal-stats small { font-size: 9px; opacity: .7; }.signal-stats b { font-size: 12px; margin-top: 2px; }
.week-strip { margin: -1px clamp(30px,7vw,110px) 0; display: grid; grid-template-columns: repeat(7,1fr); background: white; border: 1px solid #ded9ca; border-top: 0; }
.week-strip button { border: 0; border-right: 1px solid #ded9ca; background: white; padding: 15px 8px; color: var(--ink); }.week-strip button:last-child { border-right: 0; }.week-strip small,.week-strip span { display: block; color: var(--muted); font-size: 9px; }.week-strip strong { display: block; font-size: 23px; margin: 4px 0; }.week-strip .active { background: var(--orange); color: white; }.week-strip .active small,.week-strip .active span { color: white; }
.radar-layout { padding: 34px clamp(30px,7vw,110px) 120px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; }
.ranking-panel,.brief-panel { background: white; border: 1px solid #ded9ca; padding: 25px; }
.section-title { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }.section-title h2 { margin: 4px 0 0; font-size: 24px; }.section-title > span { font-size: 9px; color: var(--muted); }
.radar-item { display: grid; grid-template-columns: 34px 44px minmax(170px,1fr) minmax(80px,.6fr) 35px; gap: 12px; align-items: center; border-top: 1px solid #e5e1d7; padding: 14px 0; }
.rank { color: #a6aca8; font-size: 11px; font-weight: 800; }.meter { height: 4px; background: #e5e9e6; }.meter i { display: block; height: 100%; background: var(--orange); }.score { text-align: right; font-size: 18px; }
.brief-panel { background: #e9edf9; border-color: #d6dbeb; }.brief-panel blockquote { font-family: "Noto Sans SC"; font-size: 21px; line-height: 1.7; margin: 28px 0; font-weight: 600; }.brief-numbers { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #cfd5e4; border-bottom: 1px solid #cfd5e4; padding: 16px 0; }.brief-numbers span { font-size: 9px; color: var(--muted); }.brief-numbers b { display: block; color: var(--ink); font-size: 22px; }

/* Variant C */
.variant-c { min-height: 100vh; background: #0b0f0d; color: #dce6df; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; }
.terminal-head { height: 58px; border-bottom: 1px solid #29312d; display: flex; justify-content: space-between; align-items: center; padding: 0 28px; background: #0e1411; position: sticky; top: 0; z-index: 5; }
.terminal-brand { font-size: 18px; font-weight: 900; letter-spacing: 1px; }.terminal-brand span { color: #95e35e; }.terminal-brand small { color: #69746d; font-size: 9px; margin-left: 12px; }
.terminal-clock { color: #727e77; font-size: 10px; }.terminal-clock i { display: inline-block; width: 6px; height: 6px; background: #69d391; border-radius: 50%; margin: 0 5px; box-shadow: 0 0 9px #69d391; }
.terminal-shell { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 58px); }
.terminal-filter { border-right: 1px solid #29312d; padding: 29px 18px 100px; }.terminal-filter p { color: #566159; font-size: 9px; letter-spacing: 1.5px; margin: 0 8px 10px; }.terminal-filter button { width: 100%; background: transparent; color: #8f9a93; border: 0; border-bottom: 1px solid #1d2420; padding: 11px 8px; text-align: left; font-size: 11px; }.terminal-filter button span { color: #4e5952; margin-right: 12px; }.terminal-filter button b { float: right; font-weight: 400; }.terminal-filter button.active { color: #baf879; background: #131c17; border-left: 2px solid #95e35e; }
.terminal-health { border: 1px solid #29312d; margin-top: 34px; padding: 15px; }.terminal-health i { width: 7px; height: 7px; display: inline-block; background: #69d391; border-radius: 50%; }.terminal-health span { font-size: 8px; color: #657169; margin-left: 7px; }.terminal-health strong { display: block; font-size: 24px; color: #95e35e; margin: 8px 0 3px; }.terminal-health small { color: #657169; font-size: 8px; }
.terminal-content { padding: 36px 38px 110px; overflow: hidden; }.terminal-title { display: flex; justify-content: space-between; align-items: end; }.terminal-title span { color: #69746d; font-size: 9px; }.terminal-title h1 { margin: 7px 0 0; font-size: clamp(28px,4vw,48px); letter-spacing: -2px; }.terminal-title label { color: #69746d; font-size: 9px; }.terminal-title input { margin-left: 8px; width: 220px; border: 1px solid #29312d; background: #101613; color: #dce6df; padding: 9px; outline: 0; }
.ticker { margin: 25px 0 16px; display: flex; border: 1px solid #37443d; font-size: 10px; }.ticker span { background: #95e35e; color: #0b0f0d; padding: 9px 13px; font-weight: 800; }.ticker p { margin: 0; padding: 9px 13px; color: #9ba59f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-table { border-top: 1px solid #3c4640; }.table-head,.table-row { display: grid; grid-template-columns: 105px 1.25fr .75fr 1.1fr 90px; gap: 15px; align-items: center; }.table-head { padding: 10px 12px; color: #536058; font-size: 8px; border-bottom: 1px solid #29312d; }.table-row { padding: 13px 12px; border-bottom: 1px solid #202923; min-height: 70px; }.table-row:hover { background: #101713; }.date-cell strong,.date-cell span { display: block; }.date-cell strong { color: #95e35e; font-size: 12px; }.date-cell span { color: #78847d; font-size: 9px; margin-top: 3px; }.product-cell { display: flex; align-items: center; gap: 10px; }.variant-c .mini-mark { width: 36px; height: 36px; border-radius: 2px; font-family: "Noto Sans SC"; }.product-cell strong,.product-cell small { display: block; }.product-cell strong { font-size: 12px; }.product-cell small,.table-row > div > small { color: #68746d; font-size: 8px; margin-top: 4px; }.table-row > div > strong { display: block; font-size: 10px; margin-top: 5px; }.terminal-tag { color: #86b9d6; border: 1px solid #32536a; font-size: 8px; padding: 2px 4px; }.variant-c .source-badge { color: #75c896; display: block; }.signal-cell b { font-size: 17px; color: #dce6df; }.signal-cell i { display: block; width: 100%; height: 2px; background: #27312b; margin-top: 6px; }.signal-cell em { display: block; height: 100%; background: #95e35e; }.terminal-empty { color: #68746d; }

.prototype-switcher { position: fixed; z-index: 100; bottom: 20px; left: 50%; transform: translateX(-50%); display: grid; grid-template-columns: 42px auto 42px; gap: 6px; align-items: center; background: #111814; color: white; padding: 7px; border-radius: 16px; box-shadow: 0 14px 45px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.15); }
.prototype-switcher button { border: 0; background: #263129; color: white; width: 42px; height: 42px; border-radius: 11px; font-size: 17px; }.prototype-switcher button:hover { background: #3b493f; }.prototype-switcher div { min-width: 170px; text-align: center; padding: 0 10px; }.prototype-switcher small,.prototype-switcher strong { display: block; }.prototype-switcher small { color: #829087; font-size: 7px; letter-spacing: 1.5px; }.prototype-switcher strong { font-size: 11px; margin-top: 3px; }

@media (max-width: 900px) {
  .topbar { grid-template-columns: 1fr auto; padding: 0 18px; }.search-wrap { grid-column: 1 / -1; grid-row: 2; margin-bottom: 10px; }.topbar { height: auto; min-height: 76px; padding-top: 12px; }.shell-a { grid-template-columns: 1fr; }.nav-rail { display: none; }.workspace-a { padding: 34px 18px 110px; }.calendar-layout,.hero-b,.radar-layout { grid-template-columns: 1fr; }.calendar-side { position: static; }.overview-strip { grid-template-columns: repeat(3,1fr); }.overview-strip p { grid-column: 1 / -1; justify-content: flex-start; }.hero-b { padding: 45px 22px; }.signal-card { transform: none; }.week-strip,.radar-layout { margin-left: 18px; margin-right: 18px; padding-left: 0; padding-right: 0; }.terminal-shell { grid-template-columns: 1fr; }.terminal-filter { border-right: 0; border-bottom: 1px solid #29312d; display: flex; gap: 4px; padding: 10px; overflow-x: auto; }.terminal-filter p,.terminal-health { display: none; }.terminal-filter button { width: auto; white-space: nowrap; border: 1px solid #29312d; }.terminal-content { padding: 28px 16px 110px; }.table-head { display: none; }.table-row { grid-template-columns: 72px 1fr 90px; }.table-row > div:nth-child(4),.signal-cell { display: none; }
}

@media (max-width: 600px) {
  .page-intro { align-items: start; }.page-intro .primary-btn { display: none; }.calendar-layout { grid-template-columns: 1fr; }.calendar-card { padding: 14px; }.overview-strip { grid-template-columns: repeat(3,1fr); }.overview-strip > div { padding: 12px 9px; }.overview-strip p { display: none; }.timeline-group { grid-template-columns: 46px 16px 1fr; gap: 5px; }.timeline-date strong { font-size: 21px; }.timeline-date small { display: none; }.timeline-node::after { left: 7px; }.timeline-node i { margin-left: 2px; }.timeline-events { padding: 0 10px; }.event-card { grid-template-columns: 40px 1fr; }.event-side { grid-column: 2; text-align: left; }.card-actions { justify-content: flex-start; }.watchlist-grid { grid-template-columns: 1fr; }.watch-count { align-self: flex-start; }.week-strip { overflow-x: auto; grid-template-columns: repeat(7,80px); }.radar-item { grid-template-columns: 28px 38px 1fr 32px; }.radar-item .meter { display: none; }.hero-copy h1 { letter-spacing: -2.5px; }.terminal-title { align-items: start; gap: 16px; flex-direction: column; }.terminal-title input { width: 190px; }.top-actions .sync-pill { display: none; }
}
