/* Canonical public company-research theme. Source: Meitu report visual system. */
:root {
      --bg: #f4f1ea;
      --paper: #fffdf8;
      --ink: #17221e;
      --muted: #647068;
      --line: #d9d7ce;
      --green: #176b50;
      --green-soft: #e1f2e9;
      --amber: #9b6417;
      --amber-soft: #fff0cf;
      --red: #a33d35;
      --red-soft: #fde8e4;
      --blue: #315f8f;
      --blue-soft: #e7eff8;
      --shadow: 0 18px 45px rgba(42, 50, 44, .08);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 8% 0%, rgba(23,107,80,.10), transparent 26rem),
        radial-gradient(circle at 92% 6%, rgba(155,100,23,.09), transparent 24rem),
        var(--bg);
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.68;
    }
    a { color: var(--green); text-decoration-thickness: .08em; text-underline-offset: .18em; }
    a:hover { color: #0d4f39; }
    code { overflow-wrap: anywhere; word-break: break-word; }
    .wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
    .hero { padding: 68px 0 28px; }
    .eyebrow {
      margin: 0 0 12px;
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    h1 { margin: 0; max-width: 980px; overflow-wrap: anywhere; word-break: break-word; font-size: clamp(38px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
    .dek { max-width: 850px; margin: 24px 0 0; font-size: clamp(18px, 2.2vw, 25px); color: #3c4842; }
    .meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
    .pill {
      display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px;
      border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55);
      color: #48534d; font-size: 13px; font-weight: 650;
    }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
    .verdict {
      margin: 34px 0 22px;
      display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .75fr);
      border: 1px solid #d7c38f; border-radius: 22px; overflow: hidden;
      background: linear-gradient(135deg, #fffaf0, #fff4d8);
      box-shadow: var(--shadow);
    }
    .verdict-main { padding: 30px 32px; }
    .verdict-side { padding: 30px 28px; background: rgba(255,255,255,.45); border-left: 1px solid #e1d0a4; }
    .label { color: var(--amber); font-size: 12px; letter-spacing: .12em; font-weight: 850; text-transform: uppercase; }
    .verdict h2 { margin: 8px 0 10px; font-size: clamp(25px, 3vw, 38px); line-height: 1.18; }
    .verdict p { margin: 0; }
    .signal { margin: 9px 0 0; font-size: 29px; font-weight: 850; color: var(--amber); }
    .signal-note { color: #685c43; font-size: 14px; }
    nav {
      position: sticky; top: 0; z-index: 10; overflow-x: auto;
      border-top: 1px solid rgba(217,215,206,.8); border-bottom: 1px solid rgba(217,215,206,.95);
      background: rgba(244,241,234,.9); backdrop-filter: blur(14px);
    }
    nav .wrap { display: flex; gap: 4px; padding: 8px 0; }
    nav a { flex: 0 0 auto; padding: 8px 11px; border-radius: 9px; color: #47534c; text-decoration: none; font-size: 13px; font-weight: 700; }
    nav a:hover { background: var(--paper); color: var(--green); }
    main { padding: 18px 0 90px; }
    section { scroll-margin-top: 70px; margin-top: 22px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); }
    section > h2 { margin: 0 0 8px; overflow-wrap: anywhere; word-break: break-word; font-size: clamp(26px, 3vw, 38px); line-height: 1.18; letter-spacing: -.025em; }
    .section-dek { margin: 0 0 24px; max-width: 900px; color: var(--muted); }
    h3 { margin: 28px 0 10px; overflow-wrap: anywhere; word-break: break-word; font-size: 20px; line-height: 1.3; }
    p { margin: 10px 0; }
    .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
    .card { grid-column: span 3; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
    .card.wide { grid-column: span 6; }
    .card .k { color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .04em; }
    .card .v { margin-top: 4px; font-size: 27px; line-height: 1.15; font-weight: 850; letter-spacing: -.025em; }
    .card .s { margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }
    .up { color: var(--green); } .down { color: var(--red); } .flat { color: var(--amber); }
    .callout { margin: 20px 0; padding: 18px 20px; border-left: 4px solid var(--green); border-radius: 4px 12px 12px 4px; background: var(--green-soft); }
    .callout.amber { border-left-color: var(--amber); background: var(--amber-soft); }
    .callout.red { border-left-color: var(--red); background: var(--red-soft); }
    .callout.blue { border-left-color: var(--blue); background: var(--blue-soft); }
    .callout strong { display: inline-block; margin-bottom: 3px; }
    table { width: 100%; border-collapse: collapse; font-size: 14px; }
    section > table { display: block; max-width: 100%; overflow-x: auto; }
    th, td { padding: 11px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
    th { color: #4b5650; background: #f3f3ed; font-size: 12px; letter-spacing: .025em; }
    tbody tr:hover { background: #faf8f2; }
    .table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 13px; }
    .table-wrap table { min-width: 730px; }
    .tag { display: inline-block; padding: 2px 7px; border-radius: 999px; font-size: 11px; font-weight: 780; white-space: nowrap; }
    .tag.good { color: var(--green); background: var(--green-soft); }
    .tag.warn { color: var(--amber); background: var(--amber-soft); }
    .tag.risk { color: var(--red); background: var(--red-soft); }
    .tag.info { color: var(--blue); background: var(--blue-soft); }
    .tag.neutral { color: #56625b; background: #ecefe9; }
    .bar-row { display: grid; grid-template-columns: 104px 1fr 86px; align-items: center; gap: 11px; margin: 10px 0; font-size: 13px; }
    .track { height: 12px; border-radius: 999px; background: #eceae2; overflow: hidden; }
    .fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #2d8c6b, #85c8a8); }
    .fill.amber { background: linear-gradient(90deg, #b77619, #e4b76b); }
    .fill.red { background: linear-gradient(90deg, #a84941, #dc8a82); }
    .bar-val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 750; }
    .chart { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
    .chart.full { margin: 16px 0 20px; padding: 20px; }
    .chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 10px; }
    .chart-title { color: var(--ink); font-size: 17px; font-weight: 820; line-height: 1.3; }
    .chart-subtitle { margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .chart-note { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
    .legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 13px; color: #56625b; font-size: 11px; }
    .legend-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
    .swatch { width: 11px; height: 11px; border-radius: 3px; background: var(--green); }
    .swatch.amber { background: #d89b45; }
    .swatch.neutral { background: #a8b2ac; }
    .swatch.open { background: #fff; border: 2px solid var(--amber); border-radius: 50%; }
    .chart svg { display: block; width: 100%; height: auto; overflow: visible; }
    .axis { stroke: #d9d7ce; stroke-width: 1; }
    .grid-line { stroke: #e5e3db; stroke-width: 1; stroke-dasharray: 4 5; }
    .line-green { fill: none; stroke: var(--green); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
    .line-amber { fill: none; stroke: var(--amber); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
    .point { fill: var(--paper); stroke: var(--green); stroke-width: 3; }
    .chart text { fill: #5c6861; font-size: 11px; font-family: inherit; }
    .two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .entry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
    .entry-card { padding: 22px; border: 1px solid var(--line); border-top: 5px solid var(--green); border-radius: 16px; background: #fff; }
    .entry-card.event { border-top-color: var(--amber); }
    .entry-card h3 { margin: 8px 0; font-size: 24px; }
    .entry-card p { color: var(--muted); }
    .entry-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .entry-links a { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: 12px; font-weight: 750; }
    .status-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 18px 0 0; }
    .status-box { padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
    .status-box .status-key { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
    .status-box .status-value { margin-top: 3px; font-size: 14px; font-weight: 800; }
    .evidence-drawer { border-left: 4px solid var(--blue); }
    .evidence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
    .evidence-grid div { min-width: 0; }
    .evidence-grid dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .04em; }
    .evidence-grid dd { margin: 2px 0 0; overflow-wrap: anywhere; font-size: 13px; }
    .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
    .method-step { padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
    .method-step .n { color: var(--amber); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
    .method-step strong { display: block; margin: 3px 0 4px; }
    .method-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
    ol.clean, ul.clean { margin: 8px 0 0; padding-left: 21px; }
    ol.clean li, ul.clean li { margin: 7px 0; }
    .scorecard { display: grid; grid-template-columns: 1.2fr .5fr 2fr; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
    .scorecard > div { padding: 12px 14px; border-bottom: 1px solid var(--line); }
    .scorecard > div:nth-last-child(-n+3) { border-bottom: 0; }
    .scorecard .head { background: #f3f3ed; font-size: 12px; font-weight: 780; color: #4b5650; }
    .num { font-variant-numeric: tabular-nums; }
    .source-list { columns: 2; column-gap: 28px; }
    .source-list li { break-inside: avoid; margin: 0 0 9px; }
    .timeline { position: relative; margin: 20px 0 0; padding-left: 30px; }
    .timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
    .timeline-item { position: relative; margin: 0 0 18px; padding: 0 0 18px 16px; border-bottom: 1px solid var(--line); }
    .timeline-item:last-child { margin-bottom: 0; border-bottom: 0; }
    .timeline-item::before { content: ""; position: absolute; left: -27px; top: 7px; width: 11px; height: 11px; border: 3px solid var(--paper); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px var(--green); }
    .timeline-item.future::before { background: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
    .timeline-date { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
    .timeline-title { margin: 3px 0; font-size: 17px; font-weight: 820; }
    .timeline-item p { margin: 4px 0; color: #4d5952; font-size: 14px; }
    .reaction-line { margin-top: 8px !important; padding: 8px 10px; border-radius: 9px; background: #f3f3ed; font-variant-numeric: tabular-nums; }
    .event-study table { min-width: 1080px; }
    .event-study td:nth-child(n+3):nth-child(-n+8) { white-space: nowrap; font-variant-numeric: tabular-nums; }
    details { margin-top: 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
    summary { cursor: pointer; padding: 13px 15px; font-weight: 750; }
    details > div { padding: 0 15px 15px; color: #455049; }
    footer { padding: 28px 0 55px; color: var(--muted); font-size: 13px; }
    @media (max-width: 900px) {
      .verdict, .two, .entry-grid { grid-template-columns: 1fr; }
      .verdict-side { border-left: 0; border-top: 1px solid #e1d0a4; }
      .card { grid-column: span 6; }
      .source-list { columns: 1; }
      .method-grid { grid-template-columns: 1fr 1fr; }
      .status-strip { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 620px) {
      .wrap { width: min(100% - 22px, 1180px); }
      .hero { padding-top: 42px; }
      section { padding: 24px 18px; border-radius: 16px; }
      .grid { grid-template-columns: minmax(0, 1fr); }
      .card, .card.wide { grid-column: auto; min-width: 0; }
      .chart.full { padding: 14px 10px; }
      .chart-head { display: block; }
      .legend { justify-content: flex-start; margin-top: 8px; }
      .method-grid { grid-template-columns: 1fr; }
      .scorecard { grid-template-columns: 1fr; }
      .scorecard .head { display: none; }
      .scorecard > div { border-bottom: 0; padding: 6px 13px; }
      .scorecard > div:nth-child(3n+1) { padding-top: 14px; font-weight: 800; border-top: 1px solid var(--line); }
      .scorecard > div:nth-child(3n) { padding-bottom: 14px; }
      .status-strip, .evidence-grid { grid-template-columns: 1fr; }
    }
    @media print {
      body { background: white; color: black; }
      nav { display: none; }
      .hero { padding-top: 20px; }
      section, .verdict { box-shadow: none; break-inside: avoid; }
      a { color: black; text-decoration: none; }
    }
