:root {
  --ink: #13231f;
  --muted: #65736d;
  --paper: #f3f6f1;
  --surface: #ffffff;
  --line: #d8dfd8;
  --line-strong: #aebbb3;
  --route: #1f6b4f;
  --route-soft: #dcebe3;
  --amber: #d88a22;
  --amber-soft: #fff0d9;
  --danger: #b94b3d;
  --danger-soft: #f8e5e1;
  --blue: #2e5e85;
  --shadow: 0 18px 45px rgba(19, 35, 31, .08);
  --radius: 3px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); }
button, input, select { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(216, 138, 34, .42);
  outline-offset: 2px;
}

.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 999; background: var(--ink); color: #fff; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.masthead {
  min-height: 74px;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ink);
  color: #fff;
  border-bottom: 4px solid var(--amber);
}
.brand-block { display: flex; align-items: center; gap: 1rem; }
.brand { color: #fff; text-decoration: none; font: 900 1.45rem/1 "Arial Narrow", "Roboto Condensed", sans-serif; letter-spacing: -.04em; }
.brand-divider { width: 1px; height: 34px; background: rgba(255,255,255,.22); }
.eyebrow, .route-code, .panel-code {
  margin: 0;
  font: 700 .67rem/1.2 "Arial Narrow", "Roboto Condensed", sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { color: rgba(255,255,255,.48); }
.product-name { margin: .2rem 0 0; font-size: .9rem; font-weight: 650; letter-spacing: .06em; }
.masthead-meta { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.68); font: 600 .73rem/1.3 "Arial Narrow", sans-serif; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #72d39e; box-shadow: 0 0 0 4px rgba(114,211,158,.12); }
.meta-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

.shell { width: min(1580px, calc(100% - clamp(2rem, 7vw, 7rem))); margin: 0 auto; padding: 2.4rem 0 4rem; }
.brief {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  align-items: stretch;
  min-height: 282px;
  background-color: var(--surface);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.brief-copy { padding: clamp(2rem, 5vw, 4.8rem); background: linear-gradient(90deg, rgba(255,255,255,.98) 68%, rgba(255,255,255,.74)); }
.route-code { color: var(--route); }
.brief h1 { margin: .85rem 0 1rem; max-width: 840px; font: 800 clamp(2.3rem, 4.6vw, 5.3rem)/.98 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: -.065em; }
.brief h1 span { color: var(--route); }
.brief-note { max-width: 720px; margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.answer-board { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3.8rem); background: var(--route); color: #fff; overflow: hidden; }
.answer-board::after { content: ""; position: absolute; right: -45px; bottom: -45px; width: 170px; height: 170px; border: 28px solid rgba(255,255,255,.08); border-radius: 50%; }
.board-label { margin: 0 0 1.25rem; color: rgba(255,255,255,.62); font-size: .76rem; letter-spacing: .08em; }
.board-answer { display: flex; align-items: baseline; gap: .7rem; }
.board-answer strong { font: 800 clamp(3.2rem, 6vw, 6.8rem)/.9 "Arial Narrow", sans-serif; letter-spacing: -.06em; }
.board-answer span { font-size: .95rem; }
.board-track { height: 6px; margin: 1.4rem 0 1rem; background: rgba(255,255,255,.16); overflow: hidden; }
.board-track i { display: block; width: 0; height: 100%; background: #ffd28e; transition: width .8s cubic-bezier(.2,.8,.2,1); }
.answer-board > p:last-child { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.76); font-size: .8rem; line-height: 1.55; }

.control-strip { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0 1.1rem; border-bottom: 1px solid var(--line-strong); }
.period-control { display: flex; align-items: center; gap: .35rem; }
.period-control > span { margin-right: .5rem; color: var(--muted); font-size: .78rem; }
.period-control button, .filter-rail button, .table-footer button {
  border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); color: var(--muted); cursor: pointer; padding: .45rem .8rem; font-size: .75rem; font-weight: 650;
}
.period-control button:hover, .filter-rail button:hover, .table-footer button:hover { border-color: var(--route); color: var(--route); }
.period-control button.active, .filter-rail button.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.quality-note { margin: 0; color: var(--muted); font-size: .75rem; text-align: right; }

.manifest { display: grid; grid-template-columns: repeat(6, 1fr); background: var(--surface); border: 1px solid var(--line-strong); border-top: 0; }
.manifest article { min-width: 0; padding: 1.25rem 1.1rem 1.1rem; border-right: 1px solid var(--line); }
.manifest article:last-child { border-right: 0; }
.manifest article.accent { background: var(--amber-soft); }
.manifest span, .manifest small { display: block; }
.manifest span { color: var(--muted); font-size: .71rem; }
.manifest strong { display: block; margin: .35rem 0 .25rem; font: 800 clamp(1.65rem, 2.2vw, 2.7rem)/1 "Arial Narrow", sans-serif; letter-spacing: -.04em; white-space: nowrap; }
.manifest small { color: var(--muted); font-size: .68rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.daily-ops-panel { margin-top: 1.2rem; }
.daily-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--line); gap: 1px; border-bottom: 1px solid var(--line-strong); }
.daily-summary article { min-width: 0; min-height: 118px; padding: 1.18rem 1.1rem; background: #fff; }
.daily-summary article:first-child { background: #e8eef5; }
.daily-summary span, .daily-summary small { display: block; color: var(--muted); font-size: .68rem; }
.daily-summary strong { display: block; margin: .48rem 0 .35rem; overflow: hidden; color: var(--ink); font: 800 clamp(1.45rem, 2vw, 2.35rem)/1.02 "Arial Narrow", "PingFang SC", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.daily-summary article:first-child strong { color: var(--blue); }
.daily-ops-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); border-bottom: 1px solid var(--line-strong); }
.daily-ops-grid > article { min-width: 0; border-right: 1px solid var(--line-strong); }
.daily-ops-grid > article:last-child { border-right: 0; }
.daily-traffic-chart { min-height: 330px; padding: .8rem 1rem .2rem; overflow-x: auto; }
.daily-traffic-chart svg { display: block; width: 100%; min-width: 700px; height: auto; }
.daily-pv-line, .daily-uv-line, .daily-search-line, .daily-demand-line { fill: none; stroke-width: 3; stroke-linecap: square; stroke-linejoin: round; }
.daily-pv-line { stroke: var(--blue); opacity: .42; }
.daily-uv-line { stroke: var(--blue); }
.daily-search-line { stroke: var(--route); }
.daily-demand-line { stroke: var(--amber); }
.daily-uv-point { fill: var(--blue); }
.daily-search-point { fill: var(--route); }
.daily-demand-point { fill: var(--amber); }
.uv-key { background: var(--blue); }
.pv-key { background: #8bb2d2; }
.demand-key { background: var(--amber); }
.daily-row-list { padding: .72rem 1.1rem 1.1rem; max-height: 404px; overflow: auto; }
.daily-row { display: grid; grid-template-columns: 46px repeat(5, minmax(46px, 1fr)); gap: .45rem; align-items: center; min-height: 34px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .66rem; }
.daily-row:last-child { border-bottom: 0; }
.daily-row strong { color: var(--ink); font: 800 .7rem/1 "Arial Narrow", sans-serif; }
.daily-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dimension-list, .analysis-list { padding: .75rem 1.15rem 1.1rem; max-height: 520px; overflow: auto; }
.dimension-row, .analysis-row { min-height: 104px; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.dimension-row:last-child, .analysis-row:last-child { border-bottom: 0; }
.dimension-row > div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: .7rem; align-items: baseline; }
.dimension-row span { color: var(--route); font: 800 .62rem/1 "Arial Narrow", sans-serif; letter-spacing: .08em; }
.dimension-row strong, .analysis-row strong { display: block; overflow: hidden; color: var(--ink); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.dimension-row p, .analysis-row p { margin: .42rem 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.dimension-row b { display: inline-block; margin-right: .4rem; padding: .22rem .42rem; background: var(--route-soft); color: var(--route); font-size: .6rem; }
.dimension-row em, .analysis-row b { display: block; margin-top: .42rem; color: var(--ink); font-size: .66rem; font-style: normal; line-height: 1.5; }
.analysis-row.warning b { display: inline-block; padding: .32rem .48rem; background: var(--amber-soft); color: #70440c; }

.growth-overview { margin-top: 1.2rem; }
.growth-metrics { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); background: var(--line); gap: 1px; border-bottom: 1px solid var(--line-strong); }
.growth-metrics article { min-width: 0; min-height: 126px; padding: 1.25rem 1.1rem; background: #fff; }
.growth-metrics article.search { background: #e7f1ec; }
.growth-metrics article.risk { background: var(--amber-soft); }
.growth-metrics span, .growth-metrics small { display: block; color: var(--muted); font-size: .68rem; }
.growth-metrics strong { display: block; margin: .5rem 0 .35rem; font: 800 clamp(1.65rem, 2.2vw, 2.65rem)/1 "Arial Narrow", sans-serif; letter-spacing: -.04em; }
.growth-metrics article.search strong { color: var(--route); }
.growth-metrics article.risk strong { color: #8b540f; }
.growth-metrics small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.growth-visual-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(300px, .8fr); border-bottom: 1px solid var(--line-strong); }
.growth-trend-card, .growth-source-card { min-width: 0; }
.growth-trend-card { border-right: 1px solid var(--line-strong); }
.growth-source-card { color: #fff; background: var(--ink); }
.subhead { min-height: 74px; padding: 1.05rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.growth-source-card .subhead { border-color: rgba(255,255,255,.14); }
.subhead h3 { margin: 0; font-size: .98rem; }
.subhead > p { margin: 0; color: var(--muted); font-size: .68rem; }
.chart-legend { display: flex; gap: 1rem; color: var(--muted); font-size: .66rem; }
.chart-legend span { display: flex; align-items: center; gap: .4rem; }
.chart-legend i { width: 18px; height: 3px; }
.direct-key { background: var(--blue); }
.search-key { background: var(--route); }
.growth-trend-chart { min-height: 330px; padding: .8rem 1rem .2rem; overflow-x: auto; }
.growth-trend-chart svg { display: block; width: 100%; min-width: 680px; height: auto; }
.growth-grid-line { stroke: #dbe2dc; stroke-width: 1; }
.growth-axis { fill: #66766f; font: 10px "Arial Narrow", sans-serif; }
.growth-axis-label { fill: #50615a; font: 700 10px "PingFang SC", sans-serif; }
.direct-area { fill: url(#growthDirectArea); }
.direct-line, .search-line { fill: none; stroke-width: 3; stroke-linecap: square; stroke-linejoin: round; }
.direct-line { stroke: var(--blue); }
.search-line { stroke: var(--route); }
.direct-point { fill: var(--blue); }
.search-point { fill: var(--route); }

.source-track { display: flex; height: 10px; margin: 1.35rem 1.25rem 1rem; overflow: hidden; background: rgba(255,255,255,.12); }
.source-track > i { min-width: 2px; height: 100%; }
.source-track .direct, .source-row i.direct { background: #6e9fc6; }
.source-track .search, .source-row i.search { background: #72d39e; }
.source-track .external, .source-row i.external { background: #a9b5c3; }
.source-track .owned, .source-row i.owned { background: #f1ad55; }
.source-list { padding: 0 1.25rem 1.25rem; }
.source-row { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.source-row:last-child { border-bottom: 0; }
.source-row > span { display: flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.8); font-size: .7rem; }
.source-row > span i { width: 7px; height: 7px; }
.source-row strong { font: 800 .9rem/1 "Arial Narrow", sans-serif; }
.source-row small { grid-column: 1 / -1; color: rgba(255,255,255,.48); font-size: .62rem; }
.growth-source-card .empty-note { color: rgba(255,255,255,.6); }

.growth-business-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); border-bottom: 1px solid var(--line-strong); }
.growth-business-grid > article { min-width: 0; }
.growth-business-grid > article:first-child { border-right: 1px solid var(--line-strong); }
.business-list { padding: .55rem 1.25rem 1.2rem; }
.business-row { display: grid; grid-template-columns: minmax(120px, .9fr) minmax(160px, 1.6fr) 90px; align-items: center; gap: .9rem; min-height: 56px; border-bottom: 1px solid var(--line); }
.business-row:last-child { border-bottom: 0; }
.business-row > span { font-size: .72rem; font-weight: 700; }
.business-row > div { height: 6px; background: #e5ebe6; overflow: hidden; }
.business-row > div i { display: block; height: 100%; background: var(--blue); }
.business-row[data-line="firewall"] > div i { background: var(--route); }
.business-row[data-line="contact"] > div i { background: var(--amber); }
.business-row > strong { text-align: right; font: 800 .78rem/1 "Arial Narrow", sans-serif; }
.business-row > strong small { display: block; margin-top: .28rem; color: var(--muted); font: 500 .6rem/1 "PingFang SC", sans-serif; }

.domain-decision { padding: 1.35rem; background: linear-gradient(135deg, #f6faf6, #edf4f0); }
.domain-decision h3 { margin: .55rem 0 .75rem; font-size: 1.25rem; letter-spacing: -.035em; }
.domain-decision > p:not(.panel-code) { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.75; }
.domain-decision code { padding: .1rem .28rem; color: var(--route); background: #dcebe3; font: 700 .68rem "SFMono-Regular", Consolas, monospace; }
.domain-tree { display: grid; grid-template-columns: .8fr 1fr 1fr; margin: 1rem 0; border: 1px solid var(--line-strong); }
.domain-tree > * { min-height: 70px; padding: .8rem; display: flex; flex-direction: column; justify-content: center; }
.domain-tree strong { color: #fff; background: var(--ink); font: 800 .72rem/1 "Arial Narrow", sans-serif; }
.domain-tree span { border-left: 1px solid var(--line); border-top: 4px solid var(--blue); font: 800 .7rem/1 "Arial Narrow", sans-serif; }
.domain-tree span:last-child { border-top-color: var(--route); }
.domain-tree small { margin-top: .45rem; color: var(--muted); font: 500 .58rem/1.2 "PingFang SC", sans-serif; }
.domain-decision > small { display: block; color: var(--muted); font-size: .62rem; line-height: 1.6; }
.direct-pages-section { border-bottom: 1px solid var(--line-strong); }
.direct-pages-section .subhead code { padding: .05rem .2rem; color: var(--route); background: var(--route-soft); font: 700 .62rem "SFMono-Regular", Consolas, monospace; }
.direct-pages-table { min-width: 760px; }
.direct-pages-table .direct-url { max-width: 360px; }
.direct-pages-table .direct-url a { display: block; overflow: hidden; color: var(--ink); text-decoration: none; text-overflow: ellipsis; white-space: nowrap; font-weight: 700; }
.direct-pages-table .direct-url a:hover { color: var(--route); text-decoration: underline; }
.direct-pages-table .direct-title { max-width: 360px; overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.direct-heat { display: block; width: 150px; height: 6px; background: #e5ebe6; overflow: hidden; }
.direct-heat i { display: block; min-width: 2px; height: 100%; background: linear-gradient(90deg, var(--blue), #7aa3c4); }
.growth-method { margin: 0; padding: .8rem 1.25rem; color: var(--muted); background: #f7f9f7; border-bottom: 1px solid var(--line); font-size: .65rem; line-height: 1.65; }

.growth-insights { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.growth-insights article { min-height: 170px; padding: 1.25rem; border-right: 1px solid var(--line); }
.growth-insights article:last-child { border-right: 0; }
.growth-insights span { color: var(--route); font: 750 .62rem/1 "Arial Narrow", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.growth-insights h3 { margin: .7rem 0 .55rem; font-size: .9rem; line-height: 1.45; }
.growth-insights p { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.7; }

.demand-panel { margin-top: 1.2rem; }
.demand-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--line); gap: 1px; border-bottom: 1px solid var(--line-strong); }
.demand-summary article { min-width: 0; min-height: 118px; padding: 1.18rem 1.1rem; background: #fff; }
.demand-summary article:first-child { background: #e7f1ec; }
.demand-summary span, .demand-summary small { display: block; color: var(--muted); font-size: .68rem; }
.demand-summary strong { display: block; margin: .48rem 0 .35rem; overflow: hidden; color: var(--ink); font: 800 clamp(1.45rem, 2vw, 2.35rem)/1.02 "Arial Narrow", "PingFang SC", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.demand-summary article:first-child strong { color: var(--route); }
.demand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line-strong); }
.demand-grid > article { min-width: 0; border-right: 1px solid var(--line-strong); }
.demand-grid > article:nth-child(3n) { border-right: 0; }
.demand-grid > article:nth-child(-n+3) { border-bottom: 1px solid var(--line-strong); }
.demand-list { min-height: 260px; padding: .7rem 1.15rem 1.1rem; }
.demand-row { padding: .64rem 0 .72rem; border-bottom: 1px solid var(--line); }
.demand-row:last-child { border-bottom: 0; }
.demand-row > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; align-items: baseline; margin-bottom: .38rem; }
.demand-row strong { overflow: hidden; color: var(--ink); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.demand-row span { color: var(--muted); font: 700 .62rem/1 "Arial Narrow", sans-serif; white-space: nowrap; }
.demand-row i { display: block; height: 5px; min-width: 3px; background: linear-gradient(90deg, var(--route), #78a590); }
.segment-block + .segment-block { margin-top: .9rem; padding-top: .25rem; border-top: 1px solid var(--line); }
.segment-block h4 { margin: .25rem 0 .2rem; color: var(--route); font-size: .68rem; letter-spacing: .08em; }
.demand-recent { border-bottom: 1px solid var(--line-strong); }
.recent-demand-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--line); }
.recent-demand { min-width: 0; min-height: 126px; padding: 1rem; background: #fff; }
.recent-demand p { margin: 0 0 .8rem; color: var(--ink); font-size: .78rem; line-height: 1.6; }
.recent-demand div { display: flex; flex-wrap: wrap; gap: .38rem; }
.recent-demand span { padding: .28rem .46rem; background: var(--route-soft); color: var(--route); font-size: .62rem; font-weight: 750; }

.journey-panel { margin-top: 1.2rem; }
.journey-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--line); gap: 1px; border-bottom: 1px solid var(--line-strong); }
.journey-summary article { min-width: 0; min-height: 118px; padding: 1.18rem 1.1rem; background: #fff; }
.journey-summary article:first-child { background: #e8eef5; }
.journey-summary span, .journey-summary small { display: block; color: var(--muted); font-size: .68rem; }
.journey-summary strong { display: block; margin: .48rem 0 .35rem; overflow: hidden; color: var(--ink); font: 800 clamp(1.45rem, 2vw, 2.35rem)/1.02 "Arial Narrow", "PingFang SC", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.journey-summary article:first-child strong { color: var(--blue); }
.journey-grid, .journey-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 1px solid var(--line-strong); }
.journey-grid > article, .journey-actions > article { min-width: 0; border-right: 1px solid var(--line-strong); }
.journey-grid > article:last-child, .journey-actions > article:last-child { border-right: 0; }
.journey-list { min-height: 290px; padding: .72rem 1.15rem 1.1rem; }
.journey-row { padding: .68rem 0 .76rem; border-bottom: 1px solid var(--line); }
.journey-row:last-child { border-bottom: 0; }
.journey-row > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; align-items: baseline; margin-bottom: .4rem; }
.journey-row strong { overflow: hidden; color: var(--ink); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.journey-row span { color: var(--muted); font: 700 .62rem/1 "Arial Narrow", sans-serif; white-space: nowrap; }
.journey-row i { display: block; height: 5px; min-width: 3px; background: linear-gradient(90deg, var(--blue), #8bb2d2); }
.journey-row p { margin: .42rem 0 0; color: var(--muted); font-size: .66rem; line-height: 1.55; }
.journey-action { min-height: 112px; padding: .82rem 0; border-bottom: 1px solid var(--line); }
.journey-action:last-child { border-bottom: 0; }
.journey-action strong { display: block; overflow: hidden; color: var(--ink); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.journey-action p { margin: .34rem 0; overflow: hidden; color: var(--muted); font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.journey-action span { display: block; color: var(--muted); font-size: .62rem; }
.journey-action b { display: inline-block; margin-top: .55rem; padding: .32rem .48rem; background: var(--amber-soft); color: #70440c; font-size: .64rem; line-height: 1.35; }

.warning-stack { margin-top: 1rem; padding: .85rem 1rem; background: var(--amber-soft); border-left: 4px solid var(--amber); color: #70440c; font-size: .78rem; line-height: 1.6; }
.warning-stack p { margin: 0; }
.warning-stack p + p { margin-top: .25rem; }

.two-column { display: grid; grid-template-columns: minmax(0, 2.05fr) minmax(300px, .95fr); gap: 1.2rem; margin-top: 1.2rem; }
.panel { background: var(--surface); border: 1px solid var(--line-strong); box-shadow: 0 10px 32px rgba(19,35,31,.045); }
.panel-head { min-height: 82px; padding: 1.2rem 1.35rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.panel-head.compact { min-height: 74px; }
.panel-code { margin-bottom: .35rem; color: var(--route); }
.panel-head h2 { margin: 0; font-size: 1.08rem; letter-spacing: -.02em; }
.panel-head > p { max-width: 480px; margin: 0; color: var(--muted); font-size: .72rem; text-align: right; line-height: 1.5; }

.directory-legend, .directory-row { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(125px, .55fr) 80px 70px; align-items: center; gap: .8rem; }
.directory-legend { padding: .65rem 1.2rem; background: #f8faf7; color: var(--muted); font-size: .64rem; letter-spacing: .06em; border-bottom: 1px solid var(--line); }
.directory-tree { max-height: 520px; overflow: auto; }
.directory-row { width: 100%; min-height: 54px; padding: .55rem 1.2rem; border: 0; border-bottom: 1px solid var(--line); background: #fff; color: inherit; text-align: left; cursor: pointer; }
.directory-row:last-child { border-bottom: 0; }
.directory-row:hover { background: #f7faf7; }
.directory-row.active { background: var(--route-soft); box-shadow: inset 4px 0 var(--route); }
.dir-name { min-width: 0; padding-left: calc(var(--depth, 0) * 1.15rem); position: relative; }
.dir-name::before { content: ""; position: absolute; left: calc(var(--depth, 0) * 1.15rem - .72rem); top: 50%; width: .48rem; border-top: 1px solid var(--line-strong); }
.directory-row[data-depth="0"] .dir-name::before { display: none; }
.dir-name strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 700 .78rem/1.3 "Arial Narrow", "PingFang SC", sans-serif; }
.dir-name small { display: block; margin-top: .15rem; color: var(--muted); font-size: .63rem; }
.coverage-cell { display: flex; align-items: center; gap: .55rem; }
.mini-track { flex: 1; height: 5px; background: #e9eee9; overflow: hidden; }
.mini-track i { display: block; height: 100%; background: var(--route); }
.coverage-cell span, .dir-number { color: var(--muted); font: 700 .7rem/1 "Arial Narrow", sans-serif; }
.seo-pill { width: fit-content; min-width: 42px; padding: .28rem .4rem; text-align: center; background: var(--route-soft); color: var(--route); font: 800 .68rem/1 "Arial Narrow", sans-serif; }
.seo-pill.mid { background: var(--amber-soft); color: #81500f; }
.seo-pill.low { background: var(--danger-soft); color: var(--danger); }

.diagnosis-panel { min-height: 100%; }
.score-dial { position: relative; width: 176px; margin: 1.3rem auto .4rem; aspect-ratio: 1; }
.score-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-dial circle { fill: none; stroke-width: 9; }
.dial-base { stroke: #e7ece7; }
.dial-value { stroke: var(--route); stroke-linecap: square; stroke-dasharray: 301.6; stroke-dashoffset: 301.6; transition: stroke-dashoffset .8s ease; }
.score-dial > div { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.score-dial strong { font: 800 2.8rem/1 "Arial Narrow", sans-serif; }
.score-dial span { color: var(--muted); font-size: .68rem; }
.issue-list { padding: .8rem 1.3rem 1.35rem; }
.issue-row { display: grid; grid-template-columns: minmax(0,1fr) 38px; gap: .7rem; align-items: center; padding: .58rem 0; border-bottom: 1px solid var(--line); }
.issue-row:last-child { border-bottom: 0; }
.issue-copy { min-width: 0; }
.issue-copy div { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .3rem; font-size: .7rem; }
.issue-copy span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.issue-copy i { display: block; height: 3px; background: var(--danger); opacity: .72; }
.issue-row b { color: var(--danger); font: 800 .82rem/1 "Arial Narrow", sans-serif; text-align: right; }

.ranking-panel, .actions-panel, .evidence-grid { margin-top: 1.2rem; }
.ranking-head { align-items: center; }
.ranking-tools { display: flex; gap: .55rem; }
.search-box input, .ranking-tools select { min-height: 38px; border: 1px solid var(--line-strong); border-radius: 0; background: #fff; color: var(--ink); padding: .45rem .7rem; font-size: .75rem; }
.search-box input { width: min(280px, 32vw); }
.filter-rail { display: flex; gap: .4rem; padding: .75rem 1.2rem; overflow-x: auto; border-bottom: 1px solid var(--line); }
.filter-rail button { flex: 0 0 auto; }
.filter-rail b { margin-left: .25rem; font: inherit; opacity: .68; }
#directoryFilter { background: var(--amber-soft); border-color: var(--amber); color: #70440c; }
.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; font-size: .74rem; }
th { position: sticky; top: 0; z-index: 2; padding: .72rem .75rem; background: #f7f9f6; color: var(--muted); border-bottom: 1px solid var(--line-strong); text-align: left; font-weight: 650; white-space: nowrap; }
td { padding: .72rem .75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:hover { background: #fafcf9; }
.rank-col { width: 60px; text-align: center; }
.number-col { width: 76px; text-align: right; }
td.rank, td.number { font: 750 .79rem/1.4 "Arial Narrow", sans-serif; text-align: right; }
td.rank { color: var(--muted); text-align: center; }
.page-cell { min-width: 310px; max-width: 600px; }
.page-cell a { display: block; color: var(--ink); font-weight: 700; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-cell a:hover { color: var(--route); text-decoration: underline; }
.page-cell small { display: block; margin-top: .24rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.status { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--route); }
.status.off { color: var(--danger); }
.status.off::before { background: var(--danger); }
.new-tag { display: inline-block; margin-left: .35rem; padding: .1rem .3rem; background: var(--amber-soft); color: #80500e; font-size: .58rem; font-weight: 750; }
.issues-inline { max-width: 220px; margin-top: .3rem; color: var(--danger); font-size: .62rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.table-empty { padding: 3rem 1rem; color: var(--muted); text-align: center; }
.table-footer { min-height: 56px; padding: .75rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.table-footer p { margin: 0; color: var(--muted); font-size: .72rem; }

.recommendation-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.recommendation { min-height: 230px; padding: 1.25rem; border-right: 1px solid var(--line); }
.recommendation:last-child { border-right: 0; }
.recommendation-priority { display: inline-flex; align-items: center; gap: .35rem; margin-bottom: 1rem; color: var(--muted); font: 750 .64rem/1 "Arial Narrow", sans-serif; letter-spacing: .08em; }
.recommendation-priority::before { content: ""; width: 7px; height: 7px; background: var(--route); }
.recommendation.high .recommendation-priority::before { background: var(--danger); }
.recommendation.medium .recommendation-priority::before { background: var(--amber); }
.recommendation h3 { margin: 0 0 .75rem; font-size: .94rem; line-height: 1.45; }
.recommendation p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.65; }
.recommendation .action-copy { margin-top: .65rem; color: var(--ink); }
.recommendation details { margin-top: 1rem; }
.recommendation summary { color: var(--route); cursor: pointer; font-size: .68rem; font-weight: 700; }
.recommendation ul { margin: .55rem 0 0; padding-left: 1.05rem; color: var(--muted); font-size: .63rem; line-height: 1.6; word-break: break-all; }

.evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.daily-chart { height: 240px; padding: 1.1rem 1.2rem 1rem; display: flex; align-items: flex-end; gap: clamp(2px, .45vw, 7px); overflow: hidden; }
.day-bar { flex: 1 1 0; min-width: 3px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; gap: .35rem; }
.day-bar i { min-height: 2px; background: var(--route); transition: height .55s ease; }
.day-bar span { height: 1rem; color: var(--muted); font: 600 .55rem/1 "Arial Narrow", sans-serif; text-align: center; white-space: nowrap; }
.discovery-list, .not-found-list { padding: .9rem 1.2rem 1.2rem; max-height: 240px; overflow: auto; }
.discovery-section + .discovery-section { margin-top: 1rem; }
.discovery-section h3 { margin: 0 0 .55rem; color: var(--muted); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.evidence-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .7rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .7rem; }
.evidence-row:last-child { border-bottom: 0; }
.evidence-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.evidence-row b { font: 750 .72rem/1 "Arial Narrow", sans-serif; }
.empty-note { margin: 0; padding: 1.5rem 0; color: var(--muted); font-size: .74rem; line-height: 1.6; text-align: center; }
.loading-block { color: var(--muted); }
.loading-block > p { margin: 0; padding: 2.5rem 1rem; text-align: center; font-size: .76rem; }

.sales-system { margin-top: 1.2rem; color: #fff; background: var(--ink); border-top: 4px solid var(--amber); box-shadow: var(--shadow); }
.sales-system > header { padding: 1.6rem 1.8rem; display: grid; grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr); align-items: end; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.sales-system .panel-code { color: #eaae5e; }
.sales-system h2 { margin: .45rem 0 0; font-size: 1.45rem; }
.sales-system > header > p { margin: 0; color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.7; }
.sales-system > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sales-system article { min-height: 230px; padding: 1.5rem 1.8rem; border-right: 1px solid rgba(255,255,255,.13); }
.sales-system article:last-child { border-right: 0; }
.sales-system article > span { color: #79bd9c; font: 800 .68rem/1 "Arial Narrow", sans-serif; }
.sales-system article:nth-child(2) > span { color: #eaae5e; }
.sales-system article:nth-child(3) > span { color: #8eb5d4; }
.sales-system h3 { margin: .75rem 0 .85rem; font-size: 1rem; }
.sales-system ul { margin: 0; padding-left: 1rem; color: rgba(255,255,255,.62); font-size: .7rem; line-height: 1.75; }
.sales-system li + li { margin-top: .4rem; }

.page-footer { padding: 1.2rem clamp(1rem, 4vw, 4.5rem); display: flex; justify-content: space-between; gap: 1rem; background: var(--ink); color: rgba(255,255,255,.55); font-size: .67rem; }
.page-footer p { margin: 0; }
.fatal-error { position: fixed; inset: auto 1.2rem 1.2rem auto; z-index: 50; width: min(430px, calc(100% - 2.4rem)); padding: 1.2rem; background: var(--danger-soft); border: 1px solid var(--danger); color: #6f241b; box-shadow: var(--shadow); }
.fatal-error strong { font-size: .9rem; }
.fatal-error p { margin: .45rem 0 .8rem; font-size: .72rem; line-height: 1.6; }
.fatal-error button { border: 0; background: var(--danger); color: #fff; padding: .5rem .8rem; cursor: pointer; font-size: .72rem; }

/* Readability pass: the dashboard is for daily business review, so avoid tiny analytical labels. */
html { font-size: 17px; }
body { font-size: 1rem; line-height: 1.62; }
.eyebrow, .route-code, .panel-code { font-size: .8rem; letter-spacing: .08em; }
.product-name, .masthead-meta { font-size: .92rem; }
.brief-note { font-size: 1.05rem; }
.board-label, .board-answer span, .answer-board > p:last-child,
.period-control > span, .quality-note { font-size: .92rem; }
.period-control button, .filter-rail button, .table-footer button {
  padding: .56rem .92rem;
  font-size: .9rem;
}
.manifest span, .daily-summary span, .growth-metrics span,
.demand-summary span, .journey-summary span { font-size: .9rem; }
.manifest small, .daily-summary small, .growth-metrics small,
.demand-summary small, .journey-summary small { font-size: .84rem; line-height: 1.45; }
.panel-head h2 { font-size: 1.28rem; line-height: 1.35; }
.panel-head > p { max-width: 560px; font-size: .92rem; line-height: 1.65; }
.subhead h3 { font-size: 1.12rem; line-height: 1.35; }
.subhead > p, .chart-legend { font-size: .84rem; line-height: 1.45; }
.daily-row {
  grid-template-columns: 58px repeat(5, minmax(62px, 1fr));
  min-height: 42px;
  font-size: .88rem;
}
.daily-row strong { font-size: .94rem; }
.dimension-row > div { grid-template-columns: 100px minmax(0, 1fr); }
.dimension-row span, .growth-insights span, .recommendation-priority,
.segment-block h4, .discovery-section h3 { font-size: .78rem; letter-spacing: .06em; }
.dimension-row strong, .analysis-row strong, .journey-action strong,
.demand-row strong, .journey-row strong { font-size: .94rem; line-height: 1.45; }
.dimension-row p, .analysis-row p, .dimension-row em, .analysis-row b,
.growth-insights p, .domain-decision > p:not(.panel-code),
.domain-decision > small, .growth-method, .recommendation p,
.recommendation summary, .recommendation ul, .warning-stack,
.journey-row p, .journey-action p, .journey-action span, .journey-action b,
.empty-note, .loading-block > p { font-size: .88rem; line-height: 1.65; }
.dimension-row b, .recent-demand span, .new-tag { font-size: .78rem; }
.source-row > span, .source-row small, .business-row > span,
.business-row > strong small, .domain-tree small,
.directory-legend, .dir-name small, .coverage-cell span,
.issues-inline, .table-footer p, .sales-system > header > p,
.sales-system article > span, .sales-system ul, .page-footer,
.fatal-error p, .fatal-error button { font-size: .84rem; line-height: 1.6; }
.source-row strong, .business-row > strong, .dir-name strong,
.seo-pill, .issue-copy div, .issue-row b, td.rank, td.number,
.evidence-row, .evidence-row b { font-size: .92rem; }
.search-box input, .ranking-tools select {
  min-height: 44px;
  font-size: .92rem;
}
table { font-size: .92rem; }
th, td { padding: .86rem .85rem; }
.recent-demand p { font-size: .94rem; }
.sales-system h3, .recommendation h3 { font-size: 1.08rem; }
.fatal-error strong { font-size: 1rem; }

.insight-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
.insight-grid > article {
  border-right: 0;
  border-bottom: 1px solid var(--line-strong);
}
.insight-grid > article:last-child { border-bottom: 0; }
.insight-grid .subhead {
  min-height: 92px;
  background: #f8faf7;
}
.dimension-list,
.analysis-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-height: none;
  padding: 1px;
  overflow: visible;
  background: var(--line);
}
.dimension-row,
.analysis-row {
  min-height: 190px;
  padding: 1.25rem 1.35rem;
  border-bottom: 0;
  background: #fff;
}
.dimension-row header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .9rem;
}
.dimension-row header strong,
.analysis-row > span {
  color: var(--route);
  font: 850 .86rem/1.1 "PingFang SC", "Microsoft YaHei", sans-serif;
}
.dimension-row header span {
  flex: 0 0 auto;
  padding: .34rem .55rem;
  background: var(--route-soft);
  color: var(--route);
  font-size: .82rem;
  font-weight: 800;
}
.dimension-row h4 {
  margin: 0 0 .9rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.42;
}
.dimension-row p,
.analysis-row p {
  margin: 0;
  color: #52625c;
  font-size: 1rem;
  line-height: 1.75;
}
.dimension-row p b,
.analysis-row p b,
.dimension-row em b,
.analysis-row em b {
  display: inline-flex;
  min-width: 4.4rem;
  margin-right: .55rem;
  color: var(--ink);
  font-size: .92rem;
  font-style: normal;
}
.dimension-row em,
.analysis-row em {
  display: block;
  margin-top: 1rem;
  padding: .78rem .9rem;
  background: #eef5f1;
  color: var(--ink);
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.7;
}
.analysis-row {
  min-height: 205px;
  border-left: 5px solid var(--route);
}
.analysis-row.warning {
  border-left-color: var(--amber);
  background: #fffaf2;
}
.analysis-row > span {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .32rem .58rem;
  background: var(--route-soft);
}
.analysis-row.warning > span {
  background: var(--amber-soft);
  color: #70440c;
}
.analysis-row strong {
  display: block;
  margin-bottom: .8rem;
  overflow: visible;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.42;
  text-overflow: clip;
  white-space: normal;
}
.analysis-row.warning em {
  background: #ffe7bf;
  color: #5d390c;
  font-weight: 750;
}

@media (max-width: 1180px) {
  .manifest { grid-template-columns: repeat(3, 1fr); }
  .manifest article:nth-child(3) { border-right: 0; }
  .manifest article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .recommendation-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .recommendation:nth-child(2) { border-right: 0; }
  .recommendation:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .growth-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .growth-metrics article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .growth-visual-grid, .growth-business-grid { grid-template-columns: 1fr; }
  .growth-trend-card, .growth-business-grid > article:first-child { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .growth-insights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-insights article:nth-child(2n) { border-right: 0; }
  .growth-insights article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .daily-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .daily-ops-grid { grid-template-columns: 1fr; }
  .daily-ops-grid > article { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .daily-ops-grid > article:last-child { border-bottom: 0; }
  .dimension-list, .analysis-list { grid-template-columns: 1fr; }
  .demand-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demand-grid { grid-template-columns: 1fr; }
  .demand-grid > article { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .demand-grid > article:last-child { border-bottom: 0; }
  .recent-demand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-grid, .journey-actions { grid-template-columns: 1fr; }
  .journey-grid > article, .journey-actions > article { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .journey-grid > article:last-child, .journey-actions > article:last-child { border-bottom: 0; }
}

@media (max-width: 860px) {
  html { font-size: 16px; }
  .masthead { align-items: flex-start; padding-top: .9rem; padding-bottom: .9rem; }
  .masthead-meta { flex-wrap: wrap; justify-content: flex-end; }
  .meta-divider { display: none; }
  .shell { width: min(100% - 1.4rem, 1580px); padding-top: .8rem; }
  .brief { grid-template-columns: 1fr; }
  .brief-copy { padding: 2.2rem 1.5rem; }
  .answer-board { min-height: 230px; }
  .two-column { grid-template-columns: 1fr; }
  .growth-insights { grid-template-columns: 1fr; }
  .growth-insights article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .growth-insights article:last-child { border-bottom: 0; }
  .sales-system > header { grid-template-columns: 1fr; gap: .8rem; }
  .sales-system > div { grid-template-columns: 1fr; }
  .sales-system article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .sales-system article:last-child { border-bottom: 0; }
  .directory-tree { max-height: 430px; }
  .panel-head, .ranking-head { align-items: flex-start; flex-direction: column; }
  .panel-head > p { text-align: left; }
  .ranking-tools { width: 100%; }
  .search-box { flex: 1; }
  .search-box input { width: 100%; }
  .demand-summary { grid-template-columns: 1fr; }
  .demand-summary article { min-height: 0; }
  .recent-demand-list { grid-template-columns: 1fr; }
  .journey-summary { grid-template-columns: 1fr; }
  .journey-summary article { min-height: 0; }
  .daily-summary { grid-template-columns: 1fr; }
  .daily-summary article { min-height: 0; }
}

@media (max-width: 620px) {
  .brand-divider, .eyebrow, .masthead-meta #generatedAt { display: none; }
  .masthead { min-height: 62px; }
  .product-name { font-size: .78rem; }
  .brief h1 { font-size: 2.35rem; }
  .control-strip { align-items: flex-start; flex-direction: column; }
  .quality-note { text-align: left; }
  .manifest { grid-template-columns: repeat(2, 1fr); }
  .manifest article { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
  .manifest article:nth-child(2n) { border-right: 0 !important; }
  .manifest article:nth-last-child(-n+2) { border-bottom: 0; }
  .growth-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-metrics article { border-bottom: 1px solid var(--line); }
  .growth-metrics article:nth-last-child(-n+2) { border-bottom: 0; }
  .subhead { align-items: flex-start; flex-direction: column; }
  .business-row { grid-template-columns: minmax(110px, 1fr) 80px; gap: .5rem; padding: .65rem 0; }
  .business-row > div { grid-column: 1 / -1; grid-row: 2; }
  .domain-tree { grid-template-columns: 1fr; }
  .domain-tree span { border-left: 4px solid var(--blue); border-top: 1px solid var(--line); }
  .domain-tree span:last-child { border-left-color: var(--route); }
  .directory-legend, .directory-row { grid-template-columns: minmax(145px,1fr) 95px 48px; }
  .directory-legend span:last-child, .directory-row .seo-pill { display: none; }
  .directory-legend, .directory-row { padding-left: .8rem; padding-right: .8rem; }
  .recommendation-grid, .evidence-grid { grid-template-columns: 1fr; }
  .recommendation { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .ranking-tools { flex-direction: column; }
  .page-footer { flex-direction: column; }
  .daily-chart { height: 190px; }
  .daily-row { grid-template-columns: 42px repeat(2, minmax(50px, 1fr)); grid-auto-rows: 22px; padding: .45rem 0; }
  .daily-row span:nth-child(n+4) { grid-column: span 1; }
  .dimension-row > div { grid-template-columns: 1fr; gap: .25rem; }
}

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