:root {
    --bg: #f4f4f5;
    --surface: #ececee;
    --card-bg: #ffffff;
    --text: #201e1d;
    --accent: #ec3013;
    --accent-700: #ae1800;
    --n100: #f8f4f4; --n200: #eae7e7; --n300: #dcd9d9; --n400: #c3bfbf;
    --n500: #9b9797; --n600: #706c6c; --n700: #55514f; --n800: #3a3736;
    --divider: #e3e1e1;
    --green: #2f6b45; --green-tint: #eaf3ee;
    --neg: #c0361a;  --neg-tint: #fbeae7;
    --neu: #605d5d;  --neu-tint: #e6e4e4;
    --shadow-sm: 0 1px 3px rgba(30,28,27,.06), 0 1px 2px rgba(30,28,27,.04);
    --shadow-md: 0 8px 24px rgba(30,28,27,.08), 0 2px 6px rgba(30,28,27,.05);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --font: 'Archivo', system-ui, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: rgba(236,48,19,.25); }
  :focus { outline: none; }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  button { font-family: var(--font); }
  .hidden { display: none !important; }
  .label {
    font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--n700);
  }
  .tnum { font-variant-numeric: tabular-nums; }

  /* ═══ Header ═══ */
  header.top { background: #fff; border-bottom: 1px solid var(--divider); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 50; }
  .top-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 32px;
    height: 58px; display: flex; align-items: center; gap: 18px;
  }
  .brand { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
  .brand-mark {
    width: 30px; height: 30px; background: var(--text); color: var(--bg);
    border-radius: var(--radius-sm);
    display: grid; place-items: center; font-weight: 700; font-size: 15px;
  }
  .brand-name { font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
  .brand-sub {
    font-size: 10px; font-weight: 600; letter-spacing: 1.1px; color: var(--n700);
    border-left: 2px solid var(--divider); padding-left: 12px; text-transform: uppercase;
  }
  .company { position: relative; margin-left: 8px; }
  .company-btn {
    display: flex; align-items: center; gap: 9px;
    border: 1px solid var(--n300); background: var(--surface);
    border-radius: var(--radius-sm);
    font-weight: 700; font-size: 13.5px; color: var(--text);
    padding: 7px 12px; cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
  }
  .company-btn:hover { border-color: var(--n600); box-shadow: var(--shadow-sm); }
  .company-btn .caret { font-size: 10px; color: var(--n600); }
  .company-menu {
    position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
    min-width: 210px; background: #fff; border: 1px solid var(--n300);
    border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .company-menu button {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    width: 100%; text-align: left; font-size: 13px;
    background: none; border: none; padding: 9px 13px; cursor: pointer;
    color: var(--text); border-bottom: 1px solid var(--n300);
  }
  .company-menu button:last-child { border-bottom: none; }
  .company-menu button:hover { background: var(--surface); }
  .company-menu button[disabled] { color: var(--n500); cursor: not-allowed; }
  .company-menu .mini { font-size: 10px; color: var(--n500); letter-spacing: .5px; text-transform: uppercase; }
  .top-crumbs {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--n700); white-space: nowrap; overflow: hidden;
  }
  .top-crumbs b { color: var(--text); font-weight: 600; }
  .top-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
  .btn {
    font-weight: 700; font-size: 13px;
    border: 1px solid var(--n300); background: transparent; color: var(--text);
    border-radius: var(--radius-sm);
    padding: 6px 13px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 7px;
    transition: border-color .15s, background .15s, box-shadow .15s;
  }
  .btn:hover { border-color: var(--n600); box-shadow: var(--shadow-sm); }
  .btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--accent-700); border-color: var(--accent-700); box-shadow: var(--shadow-sm); }
  .btn-back { border: none; padding-left: 0; font-weight: 800; }
  .btn-back:hover { color: var(--accent); }

  .strip { background: var(--bg); border-bottom: 1px solid var(--divider); }
  .strip-inner {
    max-width: 1320px; margin: 0 auto; padding: 9px 32px;
    display: flex; align-items: center; gap: 24px;
    font-size: 12px; color: var(--n700); font-variant-numeric: tabular-nums;
  }
  .strip .ok { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; }
  .strip .ok i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .strip b { color: var(--text); font-weight: 600; }
  .strip .sp { flex: 1; }

  /* ═══ Feed layout ═══ */
  .shell {
    max-width: 1320px; margin: 0 auto;
    padding: 26px 32px 72px;
    display: grid; grid-template-columns: 284px minmax(0,1fr);
    gap: 44px;
  }
  @media (max-width: 940px) { .shell { grid-template-columns: 1fr; gap: 28px; } }

  /* ── Left nav (social-style) ── */
  .navcol { align-self: start; position: sticky; top: 82px; }
  @media (max-width: 940px) { .navcol { position: static; } }
  .mainnav { margin-bottom: 22px; }
  .nav-item {
    display: flex; align-items: center; gap: 13px;
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--n800);
    padding: 11px 12px; text-align: left;
    border-radius: var(--radius-sm);
    transition: background .12s;
  }
  .nav-item svg { width: 21px; height: 21px; flex: none; }
  .nav-item:hover { background: var(--surface); }
  .nav-item.active {
    background: var(--surface);
    font-weight: 700; color: var(--text);
    box-shadow: inset 3px 0 0 var(--accent);
  }
  .nav-badge {
    margin-left: auto; min-width: 20px; height: 20px; padding: 0 6px;
    background: var(--accent); color: #fff;
    border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 700;
    display: grid; place-items: center;
  }
  .nav-sect { border-top: 2px solid var(--divider); padding: 16px 0 20px; }
  .nav-sect > .label { display: block; margin-bottom: 10px; padding-left: 12px; }
  .plat-item {
    display: flex; align-items: center; gap: 13px;
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 14.5px; font-weight: 600; color: var(--text);
    padding: 9px 12px; text-align: left;
    border-radius: var(--radius-sm);
    transition: background .12s;
  }
  .plat-item:hover { background: var(--surface); }
  .plat-item.on { box-shadow: inset 3px 0 0 var(--accent); }
  .plat-item.off { color: var(--n500); font-weight: 500; }
  .plat-ic {
    width: 32px; height: 32px; flex: none; border-radius: var(--radius-sm);
    display: grid; place-items: center; color: #fff;
  }
  .plat-ic svg { width: 17px; height: 17px; }
  .plat-item.off .plat-ic { opacity: .3; }
  .plat-body { flex: 1; min-width: 0; }
  .plat-vol { display: block; height: 3px; background: var(--n300); margin-top: 5px; max-width: 120px; border-radius: var(--radius-pill); overflow: hidden; }
  .plat-vol i { display: block; height: 100%; background: var(--n700); }
  .plat-item.off .plat-vol i { background: var(--n400); }
  .plat-n {
    font-size: 11.5px; font-weight: 700; color: var(--n800);
    background: var(--n200); min-width: 26px; height: 20px; padding: 0 7px;
    border-radius: var(--radius-pill);
    display: grid; place-items: center; font-variant-numeric: tabular-nums;
  }
  .plat-item.off .plat-n { color: var(--n500); background: var(--n100); }
  .sent-item {
    display: flex; align-items: center; gap: 12px;
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--text);
    padding: 8px 12px; border-radius: var(--radius-sm); text-align: left;
  }
  .sent-item:hover { background: var(--surface); }
  .sent-item.on { box-shadow: inset 3px 0 0 var(--accent); }
  .sent-item.off { color: var(--n500); font-weight: 500; }
  .sent-dot { width: 10px; height: 10px; flex: none; border-radius: 50%; }
  .sent-item.off .sent-dot { opacity: .3; }
  .sent-item .plat-n { margin-left: auto; }
  .side-note { font-size: 12px; color: var(--n600); line-height: 1.6; padding: 4px 12px 0; }
  .side-note b { color: var(--text); }

  /* ── Feed head ── */
  .feed-head { display: flex; align-items: center; gap: 16px; }
  .co-mark {
    width: 52px; height: 52px; flex: none;
    background: var(--text); color: var(--bg);
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
    font-weight: 700; font-size: 24px; letter-spacing: -.02em;
  }
  .feed-head h1 { font-weight: 700; font-size: 26px; letter-spacing: -.015em; line-height: 1.1; }
  .feed-sub { font-size: 13px; color: var(--n700); margin-top: 3px; }
  .feed-sub b { color: var(--text); font-weight: 700; }
  .live-pill {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--green); border: 1px solid var(--green); border-radius: var(--radius-pill);
    padding: 5px 12px;
  }
  .live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

  /* ── Dashboard ── */
  .dash {
    margin-top: 20px;
    border: 1px solid var(--n300); background: var(--card-bg);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .dash-tiles {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--n300);
  }
  @media (max-width: 720px) { .dash-tiles { grid-template-columns: repeat(2, 1fr); } }
  .tile { padding: 16px 20px 14px; border-right: 1px solid var(--n300); }
  .tile:last-child { border-right: none; }
  .tile .k { font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--n700); }
  .tile .v { font-weight: 700; font-size: 26px; letter-spacing: -.015em; line-height: 1.2; margin-top: 2px; }
  .tile .d { font-size: 11.5px; font-weight: 600; margin-top: 3px; font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 5px; }
  .d-up { color: var(--green); }
  .d-down { color: var(--neg); }
  .d-flat { color: var(--n600); }
  .tile .d .cmp { color: var(--n600); font-weight: 500; }
  .dash-low {
    display: grid; grid-template-columns: minmax(0,1fr) auto;
    align-items: center; gap: 36px;
    padding: 16px 20px 18px;
  }
  @media (max-width: 720px) { .dash-low { grid-template-columns: 1fr; } }
  .dash-dist .k, .dash-chart .k {
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--n700); margin-bottom: 9px;
  }
  .dash-dist .bar { display: flex; height: 10px; gap: 2px; border-radius: var(--radius-pill); overflow: hidden; }
  .dash-dist .bar i { display: block; height: 100%; }
  .dash-dist .legend {
    display: flex; gap: 18px; font-size: 12px; color: var(--n800);
    margin-top: 9px; font-variant-numeric: tabular-nums; flex-wrap: wrap;
  }
  .dash-dist .legend i { display: inline-block; width: 9px; height: 9px; margin-right: 6px; border-radius: 50%; }
  .dash-chart { min-width: 240px; }
  .dchart { display: flex; align-items: flex-end; gap: 8px; height: 66px; }
  .dcol { display: flex; flex-direction: column-reverse; gap: 2px; width: 22px; cursor: default; }
  .dcol i { display: block; width: 100%; border-radius: 2px; }
  .dcol:hover i { opacity: .82; }
  .dlabels { display: flex; gap: 8px; margin-top: 5px; }
  .dlabels span { width: 22px; text-align: center; font-size: 10px; color: var(--n600); font-variant-numeric: tabular-nums; }

  /* ── Toolbar ── */
  .toolbar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    margin: 24px 0 6px;
    padding-bottom: 14px; border-bottom: 1px solid var(--divider);
  }
  .search {
    flex: 1; min-width: 170px;
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--n300); background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0 11px; height: 38px;
  }
  .search svg { width: 14px; height: 14px; color: var(--n600); flex: none; }
  .search input {
    border: none; background: none; font-family: var(--font); font-size: 13.5px;
    color: var(--text); width: 100%; height: 100%;
  }
  .search input::placeholder { color: var(--n500); }
  select.filter {
    font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--text);
    border: 1px solid var(--n300); background: var(--surface);
    height: 38px; padding: 0 8px; cursor: pointer;
    border-radius: var(--radius-sm);
  }
  select.filter:hover { border-color: var(--n600); }
  .result-n { font-size: 12px; color: var(--n700); margin: 12px 2px 16px; font-variant-numeric: tabular-nums; }
  .result-n b { color: var(--text); font-weight: 700; }
  .toast {
    border: 1px solid var(--n300); border-left: 3px solid var(--accent);
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 13px; padding: 10px 14px; margin-bottom: 14px;
    max-width: 680px;
  }

  /* ── Content: feed + widget rail ── */
  .content {
    display: grid; grid-template-columns: minmax(0,1fr) 288px;
    gap: 36px; align-items: start;
  }
  @media (max-width: 1180px) { .content { grid-template-columns: 1fr; } .widgets { position: static !important; } }

  .widgets {
    position: sticky; top: 82px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .widget {
    border: 1px solid var(--n300); background: var(--card-bg);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .w-head {
    padding: 12px 16px;
    border-bottom: 1px solid var(--divider);
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .w-head .sub { font-size: 10.5px; font-weight: 600; color: var(--n600); letter-spacing: .5px; }
  .w-body { padding: 6px 0; }
  .wkw-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: var(--font); text-align: left;
    padding: 8px 16px;
    transition: background .12s;
  }
  .wkw-row:hover { background: var(--surface); }
  .wkw-row .t { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
  .wkw-row .b { height: 4px; background: var(--n200); min-width: 30px; border-radius: var(--radius-pill); overflow: hidden; }
  .wkw-row .b i { display: block; height: 100%; background: var(--n700); }
  .wkw-row .n { font-size: 11.5px; font-weight: 700; color: var(--n700); font-variant-numeric: tabular-nums; }
  .wsrc-row {
    display: flex; align-items: center; gap: 11px;
    padding: 8px 16px; font-size: 13px;
  }
  .wsrc-row .ic { width: 24px; height: 24px; flex: none; border-radius: 6px; display: grid; place-items: center; color: #fff; }
  .wsrc-row .ic svg { width: 13px; height: 13px; }
  .wsrc-row .nm { font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wsrc-row .sub { font-size: 11px; color: var(--n600); font-weight: 500; }
  .wsrc-row .n {
    margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--n800);
    background: var(--n200); min-width: 26px; height: 20px; padding: 0 7px;
    border-radius: var(--radius-pill);
    display: grid; place-items: center; font-variant-numeric: tabular-nums;
  }
  .wrisk-row {
    display: flex; align-items: flex-start; gap: 10px;
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: var(--font); text-align: left;
    padding: 9px 16px; transition: background .12s;
  }
  .wrisk-row:hover { background: var(--surface); }
  .wrisk-row .dot { width: 8px; height: 8px; flex: none; background: var(--neg); border-radius: 50%; margin-top: 5px; }
  .wrisk-row .tx { font-size: 12.5px; line-height: 1.45; color: var(--n800); }
  .wrisk-row .tx b { color: var(--text); font-weight: 700; }
  .wrisk-row .tx { display: block; }
  .wrisk-row .m { display: block; font-size: 11px; color: var(--n600); font-variant-numeric: tabular-nums; margin-top: 2px; }
  .w-foot {
    padding: 9px 16px; border-top: 1px solid var(--n300);
    font-size: 11.5px; font-weight: 700; color: var(--accent);
    background: none; border-left: none; border-right: none; border-bottom: none;
    cursor: pointer; width: 100%; text-align: left; font-family: var(--font);
  }
  .w-foot:hover { color: var(--accent-700); }

  /* ── Posts ── */
  .posts { min-width: 0; max-width: 680px; }
  .post {
    border: 1px solid var(--n300); background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s, transform .15s;
  }
  .post:hover { border-color: var(--n400); box-shadow: var(--shadow-md); transform: translateY(-1px); }
  .post.featured { border: 1.5px solid var(--accent); }
  .post-head { display: flex; align-items: flex-start; gap: 12px; padding: 15px 18px 0; }
  .pavatar { width: 40px; height: 40px; flex: none; border-radius: var(--radius-sm); display: grid; place-items: center; color: #fff; }
  .pavatar svg { width: 20px; height: 20px; }
  .post-srcbox { min-width: 0; flex: 1; }
  .post-src { font-weight: 700; font-size: 14.5px; line-height: 1.25; display: flex; align-items: center; gap: 5px; }
  .post-src .vf { color: var(--n600); flex: none; }
  .post-src .vf svg { width: 13px; height: 13px; display: block; }
  .post-sub { font-size: 12px; color: var(--n600); font-variant-numeric: tabular-nums; margin-top: 1px; }
  .post-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex: none; }
  .sent-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 3px 9px;
  }
  .sent-tag i { width: 7px; height: 7px; border-radius: 50%; }
  .sent-pos { background: var(--green-tint); color: var(--green); } .sent-pos i { background: var(--green); }
  .sent-neg { background: var(--neg-tint); color: var(--neg); } .sent-neg i { background: var(--neg); }
  .sent-neu { background: var(--neu-tint); color: var(--neu); } .sent-neu i { background: var(--neu); }
  .sent-score { font-size: 11.5px; color: var(--n700); font-variant-numeric: tabular-nums; }
  .post-text { padding: 11px 18px 13px; font-size: 14.5px; line-height: 1.55; }
  .post-media { background: #0d0d0d; overflow: hidden; }
  .post-media video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
  .post-media img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: grayscale(1) contrast(1.08); }
  .post-summary {
    display: flex; gap: 10px; align-items: flex-start;
    margin: 13px 18px 0;
    padding: 10px 13px;
    background: var(--surface);
    border-left: 3px solid var(--n700);
    font-size: 12.5px; line-height: 1.55; color: var(--n800);
  }
  .post.s-pos .post-summary { border-left-color: var(--green); }
  .post.s-neg .post-summary { border-left-color: var(--neg); }
  .post-summary .sl {
    font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: var(--n600); flex: none; padding-top: 2px;
  }
  .post-foot {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 12px 18px 14px;
  }
  .eng {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--n600); font-variant-numeric: tabular-nums;
  }
  .eng svg { width: 14px; height: 14px; }
  .post-foot .sp { flex: 1; }
  .tag {
    display: inline-flex; align-items: center;
    font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 2px 8px; background: var(--n200); color: var(--n800);
  }
  .open-btn {
    font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    background: var(--accent); color: #fff; border: none; border-radius: var(--radius-pill); padding: 6px 12px; cursor: pointer;
    transition: background .15s;
  }
  .open-btn:hover { background: var(--accent-700); }
  .empty { border: 1px dashed var(--n400); border-radius: var(--radius); padding: 34px; text-align: center; color: var(--n600); font-size: 13.5px; max-width: 680px; }

  /* ═══ Detail view ═══ */
  .detail-shell {
    max-width: 1160px; margin: 0 auto;
    padding: 40px 32px 72px;
    display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 56px;
  }
  @media (max-width: 980px) { .detail-shell { grid-template-columns: 1fr; } .rail { position: static !important; } }
  .kicker { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-700); margin-bottom: 14px; }
  .detail-shell h1 { font-weight: 800; font-size: 34px; line-height: 1.14; letter-spacing: -.015em; margin: 0 0 14px; max-width: 660px; }
  .standfirst { font-size: 18px; line-height: 1.5; color: var(--n800); margin: 0 0 20px; max-width: 660px; }
  .byline {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13px; color: var(--n700);
    padding: 12px 0; border-top: 1px solid var(--n300); border-bottom: 1px solid var(--n300);
    margin-bottom: 28px; max-width: 660px;
  }
  .byline b { color: var(--text); font-weight: 700; }
  .byline .sep { color: var(--n400); }

  .player { position: relative; background: #0d0d0d; overflow: hidden; margin-bottom: 10px; max-width: 660px; }
  .player video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; cursor: pointer; }
  .vtag {
    position: absolute; top: 12px; left: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.1px;
    color: #fff; background: rgba(0,0,0,.62); padding: 4px 9px;
  }
  .bigplay { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; background: rgba(0,0,0,.18); }
  .bigplay.hidden { display: none; }
  .bigplay .disc {
    width: 52px; height: 52px; background: rgba(243,242,242,.94);
    display: grid; place-items: center; transition: background .15s;
  }
  .bigplay:hover .disc { background: #fff; }
  .controls { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.58); padding: 20px 14px 10px; opacity: 0; transition: opacity .2s; }
  .player:hover .controls, .player.paused .controls { opacity: 1; }
  .progress { height: 3px; background: rgba(255,255,255,.28); cursor: pointer; margin-bottom: 8px; }
  .progress-fill { height: 100%; width: 0; background: var(--accent); }
  .ctrl-row { display: flex; align-items: center; gap: 12px; }
  .ctrl-btn { background: none; border: none; cursor: pointer; width: 24px; height: 24px; padding: 0; display: grid; place-items: center; opacity: .92; }
  .ctrl-btn:hover { opacity: 1; }
  .time { font-size: 12px; color: rgba(255,255,255,.9); font-variant-numeric: tabular-nums; }
  .ctrl-sp { flex: 1; }
  .caption { font-size: 12.5px; color: var(--n700); line-height: 1.5; margin: 0 0 34px; max-width: 660px; }
  .caption b { font-weight: 700; color: var(--n800); }

  .body-text { font-size: 17px; line-height: 1.62; color: var(--text); max-width: 660px; }
  .body-text p { margin: 0 0 24px; }
  .kw {
    background: var(--green-tint);
    box-shadow: inset 0 -1px 0 var(--green);
    padding: 0 2px; position: relative; cursor: default;
    transition: background .15s;
  }
  .kw:hover, .kw.hl { background: #d7e3da; }
  .kw sup { font-size: 10px; font-weight: 700; color: var(--green); margin-left: 1px; }
  .kw .tip {
    position: absolute; left: 0; bottom: calc(100% + 8px); z-index: 10;
    background: var(--bg); border: 1px solid var(--n400);
    padding: 8px 11px; font-size: 12px; line-height: 1.45; color: var(--n800);
    white-space: nowrap; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .15s;
  }
  .kw .tip b { display: block; color: var(--text); font-weight: 700; margin-bottom: 1px; }
  .kw:hover .tip { opacity: 1; visibility: visible; }
  .pull-quote { margin: 30px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent); }
  .pull-quote p { font-weight: 600; font-size: 20px; line-height: 1.4; margin: 0 0 10px; }
  .pull-quote cite { font-style: normal; font-size: 13px; color: var(--n700); }
  .pull-quote cite b { color: var(--n800); font-weight: 700; }

  .rail { align-self: start; position: sticky; top: 82px; }
  .panel { background: var(--surface); border: 1px solid var(--n300); overflow: hidden; }
  .panel-head { padding: 14px 20px; border-bottom: 2px solid var(--divider); display: flex; align-items: center; justify-content: space-between; }
  .panel-head h2 { font-weight: 800; font-size: 14px; }
  .panel-head .ts { font-size: 11.5px; color: var(--n700); font-variant-numeric: tabular-nums; }
  .sect { padding: 18px 20px; border-bottom: 1px solid var(--n300); }
  .sect:last-child { border-bottom: none; }
  .sect .label { display: block; margin-bottom: 13px; }
  .verdict-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
  .verdict-word { font-weight: 800; font-size: 26px; letter-spacing: -.01em; color: var(--green); }
  .verdict-score { font-size: 14px; color: var(--n700); font-variant-numeric: tabular-nums; }
  .verdict-score b { color: var(--text); font-weight: 700; }
  .scale { margin-top: 16px; }
  .scale-track { position: relative; height: 6px; display: flex; }
  .scale-track .z { flex: 1; }
  .scale-marker {
    position: absolute; top: 50%; width: 9px; height: 9px;
    background: var(--green); border: 2px solid var(--surface);
    transform: translate(-50%,-50%);
  }
  .scale-ticks { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--n700); margin-top: 7px; font-variant-numeric: tabular-nums; }
  .dist { display: grid; grid-template-columns: 58px 1fr 40px; gap: 10px 12px; align-items: center; font-size: 12.5px; }
  .dist .lbl { color: var(--n800); }
  .dist .bar { height: 6px; background: var(--n200); overflow: hidden; }
  .dist .bar i { display: block; height: 100%; }
  .dist .val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
  .kwt { width: 100%; border-collapse: collapse; font-size: 12.5px; }
  .kwt th {
    text-align: left; font-weight: 700; color: var(--n700);
    font-size: 10.5px; letter-spacing: .7px; text-transform: uppercase;
    padding: 0 0 9px; border-bottom: 1px solid var(--n300);
  }
  .kwt th:last-child, .kwt td:last-child { text-align: right; }
  .kwt td { padding: 7px 0; border-bottom: 1px solid var(--n300); vertical-align: top; color: var(--n800); }
  .kwt tr:last-child td { border-bottom: none; }
  .kwt tbody tr { transition: background .15s; cursor: default; }
  .kwt tbody tr:hover, .kwt tbody tr.hl { background: var(--bg); }
  .kwt .term { font-weight: 700; color: var(--text); }
  .kwt .term .no { font-size: 10px; color: var(--green); font-weight: 700; margin-right: 5px; }
  .kwt .cat { color: var(--n700); font-size: 11.5px; }
  .kwt .n { font-variant-numeric: tabular-nums; color: var(--text); }
  .note {
    font-size: 12.5px; line-height: 1.6; color: var(--n800);
    background: var(--bg); border: 1px solid var(--n300); padding: 12px 14px;
  }
  .note b { color: var(--text); font-weight: 700; }
  .meta-list { font-size: 12px; }
  .meta-list .row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; }
  .meta-list .k { color: var(--n700); }
  .meta-list .v { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }

  footer.bottom { border-top: 1px solid var(--divider); background: var(--bg); }
  .bottom-inner {
    max-width: 1320px; margin: 0 auto; padding: 18px 32px;
    display: flex; flex-wrap: wrap; gap: 8px 24px;
    font-size: 12px; color: var(--n700);
  }
  .bottom-inner .sp { flex: 1; }
