    :root {
      --void: #05070F;
      --panel: #0A0F1C;
      --line: rgba(158, 190, 255, .14);
      --line-soft: rgba(158, 190, 255, .07);
      --cyan: #54D6FF;
      --cyan-deep: #1E7FB8;
      --violet: #8B7CFF;
      --pink: #FF6EC7;
      --gold: #FFC46B;
      --txt: #E9F1FF;
      --dim: rgba(233, 241, 255, .58);
      --faint: rgba(233, 241, 255, .32);
      --r-lg: 24px;
      --en: "Space Grotesk", ui-monospace, Menlo, monospace;
      --cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      --iri: conic-gradient(from var(--iri-a, 0deg), #54D6FF, #8B7CFF 28%, #FF6EC7 52%, #FFC46B 74%, #54D6FF);
    }

    @property --iri-a {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false
    }

    @property --flow {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

body {
      background: var(--void);
      color: var(--txt);
      font-family: var(--cn);
      line-height: 1.7;
      overflow-x: hidden
}

/* Arabic keeps the same visual system while directional content and controls remain natural. */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .nav-inner,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-facts { direction: rtl; }
html[dir="rtl"] .floating-terminal { left: 1.5rem; right: auto; }
html[dir="rtl"] .report-indicator-value,
html[dir="rtl"] .hero-terminal { direction: ltr; text-align: left; }

    ::selection {
      background: var(--cyan);
      color: #03202E
    }

    .en {
      font-family: var(--en)
    }

    /* ===== 市场全景 ===== */
    .pulse-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem;
      margin-top: 2.2rem;
    }

    @media (max-width: 980px) {
      .pulse-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .pulse-grid { grid-template-columns: 1fr; }
    }

    .fg-wrap { position: relative; margin-top: 1rem; }
    .fg-gauge { width: 100%; display: block; }
    .fg-num { position: absolute; left: 0; right: 0; bottom: 4px; text-align: center; }
    .fg-num b { font-size: 1.9rem; display: block; line-height: 1; }
    .fg-num span { font-size: .78rem; color: var(--dim); }

    .dom-bar {
      height: 6px; border-radius: 99px; margin-top: .8rem;
      background: rgba(158, 190, 255, .12); overflow: hidden;
    }
    .dom-bar i {
      display: block; height: 100%; border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--violet));
      box-shadow: 0 0 12px rgba(84, 214, 255, .5);
    }

    .gas-rows {
      display: flex; gap: .6rem; margin-top: .9rem; font-size: .82rem;
    }
    .gas-rows span {
      flex: 1; text-align: center; padding: .45em 0; border-radius: 10px;
      border: 1px solid var(--line); background: rgba(158, 190, 255, .05); color: var(--dim);
    }

    .fund-rows { display: flex; flex-direction: column; gap: .55rem; margin-top: 1rem; font-size: .95rem; }
    .fund-rows div { display: flex; justify-content: space-between; align-items: center; padding: .4em .8em; border-radius: 10px; border: 1px solid var(--line-soft); background: rgba(158, 190, 255, .04); }
    .fund-rows span { color: var(--dim); }

    /* ========== 背景渐变点缀 ========== */
    .bg-fx {
      position: fixed;
      inset: 0;
      z-index: -6;
      pointer-events: none;
      overflow: hidden
    }

    .bg-fx i {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px)
    }

    .bg-fx .o1 {
      width: 580px;
      height: 580px;
      top: -170px;
      right: -130px;
      background: radial-gradient(circle, rgba(84, 214, 255, .26), transparent 66%);
      animation: drift1 26s ease-in-out infinite alternate
    }

    .bg-fx .o2 {
      width: 660px;
      height: 660px;
      bottom: -240px;
      left: -190px;
      background: radial-gradient(circle, rgba(139, 124, 255, .22), transparent 66%);
      animation: drift2 34s ease-in-out infinite alternate
    }

    .bg-fx .o3 {
      width: 440px;
      height: 440px;
      top: 40%;
      left: 60%;
      background: radial-gradient(circle, rgba(255, 110, 199, .13), transparent 66%);
      animation: drift3 24s ease-in-out infinite alternate
    }

    @keyframes drift1 {
      to {
        transform: translate(-70px, 90px) scale(1.14)
      }
    }

    @keyframes drift2 {
      to {
        transform: translate(100px, -80px) scale(1.08)
      }
    }

    @keyframes drift3 {
      to {
        transform: translate(-90px, -60px)
      }
    }

    /* 分区点缀:标题极光带 */
    #bento h2,
    #analyzer h2,
    #how h2,
    #faq h2 {
      position: relative
    }

    #bento .reveal:first-child::after,
    #analyzer .reveal:first-child::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 120px;
      margin-top: -90px;
      z-index: -1;
      background: radial-gradient(closest-side, rgba(139, 124, 255, .16), transparent);
      filter: blur(24px);
      pointer-events: none
    }

    /* ========== 签名组件:全息描边按钮(素材 PDF-1 第一款) ========== */
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .55em;
      font: 600 1rem/1 var(--cn);
      letter-spacing: .03em;
      color: var(--txt);
      padding: 1.05em 2.2em;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      isolation: isolate;
      user-select: none;
      transition: transform .18s ease, filter .25s ease, opacity .2s;
    }

    .btn:active {
      transform: translateY(1px) scale(.98)
    }

    .btn:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 4px
    }

    .btn[disabled] {
      opacity: .38;
      pointer-events: none;
      filter: saturate(.3)
    }

    .btn-iri {
      background: #0A0D18;
      color: #fff
    }

    .btn-iri::before {
      /* 虹彩描边 */
      content: "";
      position: absolute;
      inset: -1.6px;
      border-radius: inherit;
      z-index: -2;
      background: var(--iri);
      transition: --iri-a .6s ease;
    }

    .btn-iri::after {
      /* 内芯 + 顶部高光 */
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: -1;
      background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 42%), rgba(10, 13, 24, 0.52);
      backdrop-filter: blur(18px) saturate(1.5);
      -webkit-backdrop-filter: blur(18px) saturate(1.5);
    }

    .btn-iri {
      box-shadow: 0 0 24px rgba(84, 214, 255, .25), 0 0 60px rgba(139, 124, 255, .18), 0 12px 34px rgba(0, 0, 0, .6)
    }

    .btn-iri:hover {
      --iri-a: 180deg;
      filter: brightness(1.12);
      box-shadow: 0 0 34px rgba(84, 214, 255, .4), 0 0 90px rgba(255, 110, 199, .22), 0 14px 40px rgba(0, 0, 0, .6)
    }

    .btn-ghost {
      background: rgba(158, 190, 255, .05);
      color: var(--dim);
      border: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }

    .btn-ghost:hover {
      color: var(--txt);
      border-color: rgba(158, 190, 255, .35)
    }

    .btn-sm {
      padding: .72em 1.5em;
      font-size: .88rem
    }

    /* ========== 骨架 ========== */
    section {
      width: min(1160px, 92vw);
      margin: 0 auto;
      padding: 3.8rem 0
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6em;
      margin-bottom: 1.3rem;
      font: 500 .78rem/1 var(--en);
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: linear-gradient(90deg, var(--cyan), transparent)
    }

    h1 {
      font-size: clamp(2.6rem, 6.4vw, 5rem);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -.01em
    }

    h2 {
      font-size: clamp(1.8rem, 3.8vw, 2.8rem);
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -.01em
    }

    .grad {
      background: linear-gradient(92deg, var(--cyan) 10%, var(--violet) 55%, var(--pink) 95%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent
    }

    .sub {
      color: var(--dim);
      font-size: 1.06rem;
      max-width: 58ch;
      margin-top: 1.3rem
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s cubic-bezier(.2, .6, .2, 1), transform .8s cubic-bezier(.2, .6, .2, 1)
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    /* ========== 导航 ========== */
    header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      padding-top: 14px;
      pointer-events: none;
    }

    .nav-in {
      pointer-events: auto;
      width: min(1160px, 92vw);
      margin: 0 auto;
      height: 60px;
      padding: 0 .8rem 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .10);
      background: linear-gradient(180deg, rgba(158, 190, 255, .09), rgba(8, 12, 22, .58));
      backdrop-filter: blur(24px) saturate(1.5);
      -webkit-backdrop-filter: blur(24px) saturate(1.5);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 12px 40px rgba(0, 0, 0, .45);
    }

    .logo {
      display: flex;
      align-items: baseline;
      gap: .14em;
      text-decoration: none;
      color: var(--txt);
      font: 700 1.15rem var(--en);
      letter-spacing: .06em
    }

    .logo b {
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(84, 214, 255, .8)
    }

    nav {
      display: flex;
      gap: .35rem;
      font-size: .9rem
    }

    nav a {
      color: var(--dim);
      text-decoration: none;
      padding: .52em 1em;
      border-radius: 999px;
      transition: color .2s, background .2s
    }

    nav a:hover {
      color: var(--cyan);
      background: rgba(84, 214, 255, .08)
    }

    .floating-terminal {
      position: fixed;
      right: max(22px, 3vw);
      bottom: max(22px, 3vh);
      z-index: 180;
      min-width: 126px;
      padding-inline: 1.15rem;
      box-shadow: 0 14px 38px rgba(0, 0, 0, .38), 0 0 24px rgba(84, 214, 255, .17);
    }

    @media (max-width: 560px) {
      .floating-terminal { right: 16px; bottom: 16px; min-width: auto; padding-inline: 1rem; font-size: .82rem }
    }

    @media(max-width:800px) {
      nav {
        display: none
      }
    }

    /* ========== 开场 ========== */
    #intro {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .9s ease, visibility .9s;
    }

    #intro.done {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
    }

    #intro iframe,
    #intro video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      background: #04060D;
      object-fit: contain
    }

    #intro video {
      display: none
    }

    /* ========== Hero ========== */
    #hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 7rem 0 3.5rem;
      width: 100%;
      max-width: none
    }

    .hero-bgv {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: -3
    }

    .hero-bgv canvas {
      width: 100%;
      height: 100%;
      display: block;
      opacity: 1;
    }

    .hero-vignette {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(1100px 620px at 50% 42%, transparent 30%, rgba(5, 7, 15, .5) 74%, rgba(5, 7, 15, .82) 100%),
        linear-gradient(180deg, rgba(5, 7, 15, .55), transparent 28%, transparent 74%, var(--void) 100%)
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .5;
      background-image: linear-gradient(rgba(158, 190, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(158, 190, 255, .05) 1px, transparent 1px);
      background-size: 56px 56px;
      mask: radial-gradient(760px 480px at 50% 46%, #000 30%, transparent 78%)
    }

    .hero-7 {
      position: absolute;
      right: 4vw;
      bottom: 6vh;
      z-index: -1;
      font: 700 clamp(14rem, 30vw, 26rem)/1 var(--en);
      letter-spacing: -.05em;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(84, 214, 255, .5);
      text-shadow: 0 0 40px rgba(84, 214, 255, .35), 0 0 140px rgba(84, 214, 255, .22);
      pointer-events: none;
      user-select: none;
    }

    .nav-language {
      display: flex;
      align-items: center;
      gap: .45rem;
      padding: .28rem .35rem .28rem .72rem;
      border: 1px solid rgba(158, 190, 255, .18);
      border-radius: 999px;
      background: rgba(10, 15, 28, .6);
      box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
      backdrop-filter: blur(14px);
    }

    .nav-language > span { font-size: .95rem; line-height: 1 }

    .nav-language #langSelect {
      min-width: 112px;
      border: 0;
      background: transparent;
      padding: .45em .25em;
    }

    @media (max-width: 560px) {
      .nav-language { padding-left: .55rem }
      .nav-language #langSelect { min-width: 94px; max-width: 112px; font-size: .76rem }
    }

    .hero-in {
      width: min(1160px, 92vw);
      margin: 0 auto;
      text-align: center
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: .6em;
      margin-bottom: 1rem;
      padding: .5em 1.2em;
      border-radius: 999px;
      font-size: .82rem;
      color: var(--dim);
      border: 1px solid var(--line);
      background: rgba(10, 15, 28, .55);
      backdrop-filter: blur(12px);
    }

    .hero-chip i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px var(--cyan);
      animation: pulse 2.2s infinite
    }

    @keyframes pulse {
      50% {
        opacity: .35
      }
    }

    .hero-actions {
      display: flex;
      gap: 1.1rem;
      justify-content: center;
      margin-top: 2.8rem;
      flex-wrap: wrap
    }

    .hero-terminal {
      width: min(680px, 100%);
      margin: 0 auto 1.8rem;
      overflow: hidden;
      text-align: left;
      border: 1px solid rgba(84, 214, 255, .26);
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(6, 13, 27, .86), rgba(10, 15, 28, .56));
      box-shadow: 0 18px 56px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .09), 0 0 45px rgba(84, 214, 255, .08);
      backdrop-filter: blur(18px) saturate(1.35);
      -webkit-backdrop-filter: blur(18px) saturate(1.35);
    }

    .hero-terminal-bar {
      min-height: 38px;
      padding: 0 .9rem;
      display: flex;
      align-items: center;
      gap: .65rem;
      border-bottom: 1px solid rgba(158, 190, 255, .11);
      color: var(--faint);
      font: 500 .66rem var(--en);
      letter-spacing: .1em;
    }

    .hero-terminal-dots { display: flex; gap: 5px; flex: none }
    .hero-terminal-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(158, 190, 255, .34) }
    .hero-terminal-dots i:first-child { background: var(--pink) }
    .hero-terminal-dots i:nth-child(2) { background: var(--gold) }
    .hero-terminal-dots i:nth-child(3) { background: var(--cyan) }
    .hero-terminal-bar b { margin-left: auto; display: flex; align-items: center; gap: .45rem; color: rgba(233, 241, 255, .7); font: 500 .62rem var(--cn); letter-spacing: .03em }
    .hero-terminal-bar b i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite }

    .hero-terminal-body {
      min-height: 188px;
      padding: 1rem 1.1rem 1.15rem;
      color: var(--dim);
      font: 500 clamp(.72rem, 1.7vw, .82rem)/1.85 var(--en);
      letter-spacing: .015em;
    }

    .hero-terminal-line { white-space: pre-wrap }
    .hero-terminal-line::before { content: '›'; color: var(--violet); margin-right: .65em }
    .hero-terminal-line.cmd { color: var(--cyan) }
    .hero-terminal-line.cmd::before { content: '$'; color: var(--gold) }
    .hero-terminal-line.muted { color: rgba(233, 241, 255, .56) }
    .hero-terminal-line.ready { color: var(--cyan); text-shadow: 0 0 16px rgba(84, 214, 255, .34) }
    .hero-terminal-caret { display: inline-block; width: .55em; height: 1.05em; margin-left: .25em; vertical-align: -.18em; background: var(--cyan); animation: blink 1s steps(1) infinite }
    .hero-terminal-progress { height: 2px; background: rgba(84, 214, 255, .08); overflow: hidden }
    .hero-terminal-progress i { display: block; width: 38%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent); animation: terminalSweep 2.8s ease-in-out infinite }

    @keyframes terminalSweep {
      from { transform: translateX(-120%) }
      to { transform: translateX(370%) }
    }

    .hero-actions .btn {
      min-width: 180px;
    }

    @media (max-width: 560px) {
      .hero-terminal { margin-top: 0; border-radius: 13px }
      .hero-terminal-bar { padding: 0 .7rem; gap: .45rem }
      .hero-terminal-bar > .en { display: none }
      .hero-terminal-body { min-height: 180px; padding: .85rem .9rem 1rem; font-size: .69rem }
    }

    .hero-foot {
      display: flex;
      gap: 2.6rem;
      justify-content: center;
      margin-top: 3.2rem;
      flex-wrap: wrap
    }

    .hf {
      display: flex;
      flex-direction: column;
      gap: .15rem;
      align-items: center
    }

    .hf b {
      font: 700 1.5rem var(--en);
      color: var(--txt)
    }

    .hf b em {
      font-style: normal;
      color: var(--cyan)
    }

    .hf span {
      font-size: .78rem;
      color: var(--faint);
      letter-spacing: .08em
    }

    /* ========== 跑马灯 ========== */
    .marquee {
      border-block: 1px solid var(--line-soft);
      padding: 1.1rem 0;
      overflow: hidden;
      position: relative;
      mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
    }

    .mq-in {
      display: flex;
      gap: 3.2rem;
      width: max-content;
      animation: mq 30s linear infinite;
      font: 500 .9rem var(--en);
      color: var(--faint)
    }

    .mq-in span b {
      color: var(--txt);
      font-weight: 500
    }

    .mq-in span i {
      font-style: normal
    }

    .mq-in span i.up { color: var(--cyan) }
    .mq-in span i.dn { color: var(--pink) }

    .marquee:hover .mq-in {
      animation-play-state: paused
    }

    @keyframes mq {
      to {
        transform: translateX(-50%)
      }
    }

    /* ========== Bento ========== */
    .bento {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.1rem;
      margin-top: 2.2rem
    }

    .cell {
      position: relative;
      border-radius: var(--r-lg);
      padding: 1.7rem;
      overflow: hidden;
      background: linear-gradient(165deg, rgba(158, 190, 255, .09), rgba(10, 15, 28, .42) 46%);
      border: 1px solid rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(22px) saturate(1.4);
      -webkit-backdrop-filter: blur(22px) saturate(1.4);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        inset 1px 0 0 rgba(255, 255, 255, .04),
        inset -1px 0 0 rgba(255, 255, 255, .04),
        0 18px 44px rgba(0, 0, 0, .38);
      transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
      transform-style: preserve-3d;
      transition: transform .25s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .cell::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 18%),
        linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .05) 44%, transparent 56%);
      background-size: 100% 100%, 220% 100%;
      background-position: 0 0, 120% 0;
      transition: background-position .6s ease;
    }

    .cell:hover::before {
      background-position: 0 0, -20% 0;
    }

    .cell:hover {
      --lift: -5px;
      border-color: rgba(84, 214, 255, .4);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        0 28px 70px rgba(0, 0, 0, .5),
        0 0 46px rgba(84, 214, 255, .12)
    }

    .cell::after,
    .step::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
      background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 30%),
          rgba(84, 214, 255, .16), rgba(139, 124, 255, .09) 42%, transparent 68%);
    }

    .cell:hover::after,
    .step:hover::after {
      opacity: 1
    }

    .cell h3 {
      font-size: 1.06rem;
      margin-bottom: .45rem
    }

    .cell p {
      font-size: .88rem;
      color: var(--dim)
    }

    .c-a {
      grid-column: span 4;
      grid-row: span 2
    }

    .c-b {
      grid-column: span 2
    }

    .c-c {
      grid-column: span 2
    }

    .c-d {
      grid-column: span 2
    }

    .c-e {
      grid-column: span 2
    }

    .c-f {
      grid-column: span 2
    }

    @media(max-width:900px) {
      .bento {
        grid-template-columns: 1fr 1fr
      }

      .c-a {
        grid-column: span 2;
        grid-row: auto
      }

      .c-b,
      .c-c,
      .c-d,
      .c-e,
      .c-f {
        grid-column: span 2
      }
    }

    /* 终端演示格 */
    .term {
      margin-top: 1.2rem;
      border-radius: 14px;
      border: 1px solid var(--line-soft);
      background: #060910;
      padding: 1.1rem 1.2rem;
      font: 400 .84rem/1.75 var(--en);
      min-height: 220px;
    }

    .term-bar {
      display: flex;
      gap: 6px;
      margin-bottom: .9rem
    }

    .term-bar i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(158, 190, 255, .18)
    }

    .term-bar i:first-child {
      background: var(--pink)
    }

    .term-bar i:nth-child(2) {
      background: var(--gold)
    }

    .term-bar i:nth-child(3) {
      background: var(--cyan)
    }

    .t-cmd {
      color: var(--cyan)
    }

    .t-dim {
      color: var(--faint)
    }

    .t-out {
      color: var(--dim)
    }

    .t-pos {
      color: var(--cyan)
    }

    .t-neg {
      color: var(--pink)
    }

    .caret {
      display: inline-block;
      width: .55em;
      height: 1.05em;
      background: var(--cyan);
      vertical-align: -.18em;
      animation: blink 1s steps(1) infinite
    }

    @keyframes blink {
      50% {
        opacity: 0
      }
    }

    /* 迷你图与仪表 */
    .mini-spark {
      width: 100%;
      height: 74px;
      margin-top: 1rem
    }

    .gauge {
      display: flex;
      gap: .5rem;
      margin-top: 1.1rem
    }

    .gauge i {
      flex: 1;
      height: 44px;
      border-radius: 8px;
      background: rgba(158, 190, 255, .08);
      position: relative;
      overflow: hidden
    }

    .gauge i::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: var(--h);
      background: linear-gradient(180deg, var(--cyan), var(--cyan-deep));
      border-radius: 8px;
      box-shadow: 0 0 14px rgba(84, 214, 255, .5)
    }

    .gauge i.n::after {
      background: linear-gradient(180deg, var(--pink), #B3407F);
      box-shadow: 0 0 14px rgba(255, 110, 199, .4)
    }

    .big-num {
      font: 700 2.4rem var(--en);
      color: var(--cyan);
      text-shadow: 0 0 26px rgba(84, 214, 255, .5);
      margin-top: .8rem
    }

    .live {
      float: right;
      font: 600 .62rem var(--en);
      letter-spacing: .12em;
      padding: .3em .8em;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--faint);
    }

    .live.on {
      color: var(--cyan);
      border-color: rgba(84, 214, 255, .55);
      background: rgba(84, 214, 255, .07)
    }

    .live.on::before {
      content: "● ";
      animation: pulse 2s infinite
    }

    .cd-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-top: .7rem;
      font-family: var(--en)
    }

    .cd-price {
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--txt)
    }

    .cd-chg {
      font-size: .95rem;
      font-weight: 600
    }

    .cd-chg.up {
      color: var(--cyan)
    }

    .cd-chg.dn {
      color: var(--pink)
    }

    .g-labels {
      display: flex;
      gap: .5rem;
      margin-top: .45rem;
      font: 500 .62rem var(--en);
      letter-spacing: .05em;
      color: var(--faint)
    }

    .g-labels span {
      flex: 1;
      text-align: center
    }

    .vol-line {
      font: 500 .78rem var(--en);
      color: var(--dim);
      margin-top: .5rem
    }

    .src {
      font-size: .7rem;
      color: var(--faint);
      margin-top: .9rem
    }

    .risk-li {
      list-style: none;
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: .5rem
    }

    .risk-li li {
      font-size: .84rem;
      color: var(--dim);
      display: flex;
      gap: .6em;
      align-items: baseline
    }

    .risk-li li::before {
      content: "!";
      font: 700 .72rem var(--en);
      color: var(--gold);
      border: 1px solid rgba(255, 196, 107, .5);
      border-radius: 5px;
      padding: .05em .38em;
      flex: none
    }

    /* ========== 分析器 ========== */
    #analyzer .wrap {
      margin-top: 2.2rem;
      border-radius: var(--r-lg);
      border: none;
      padding: 2.6rem;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 0 40px rgba(84, 214, 255, .13), 0 0 90px rgba(139, 124, 255, .10), 0 24px 60px rgba(0, 0, 0, .5);
      transition: box-shadow .35s ease;
    }

    #analyzer .wrap::before {
      /* 大卡片旋转虹彩层 */
      content: "";
      position: absolute;
      z-index: -2;
      left: 50%;
      top: 50%;
      width: calc(150% + 1100px);
      aspect-ratio: 1;
      transform: translate(-50%, -50%) rotate(0deg);
      background: conic-gradient(rgba(84, 214, 255, .9), rgba(139, 124, 255, .72) 25%, rgba(255, 110, 199, .85) 50%, rgba(255, 196, 107, .68) 72%, rgba(84, 214, 255, .9));
      animation: spinC 9s linear infinite;
    }

    #analyzer .wrap::after {
      /* 面板内芯,露出 1.8px 描边 */
      content: "";
      position: absolute;
      z-index: -1;
      inset: 1.8px;
      border-radius: 22px;
      background: linear-gradient(170deg, rgba(19, 26, 43, .97), rgba(6, 9, 16, .99) 42%);
    }

    #analyzer .wrap:focus-within {
      box-shadow: 0 0 54px rgba(84, 214, 255, .24), 0 0 120px rgba(255, 110, 199, .14), 0 24px 60px rgba(0, 0, 0, .5)
    }

    #analyzer .wrap:focus-within::before {
      animation-duration: 3.5s
    }

    .a-form {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .a-field {
      flex: 1;
      min-width: 250px;
      display: flex;
      align-items: center;
      gap: .8em;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: 999px;
      padding: .4em .6em .4em 1.5em;
      background: transparent;
      border: none;
      backdrop-filter: blur(16px) saturate(1.35);
      -webkit-backdrop-filter: blur(16px) saturate(1.35);
      box-shadow: 0 0 22px rgba(84, 214, 255, .22), 0 0 46px rgba(139, 124, 255, .14), 0 0 46px rgba(255, 110, 199, .10);
      transition: box-shadow .35s ease;
    }

    .a-field::before {
      /* 旋转虹彩层:transform 动画,全内核兼容 */
      content: "";
      position: absolute;
      z-index: -2;
      left: 50%;
      top: 50%;
      width: calc(150% + 900px);
      aspect-ratio: 1;
      transform: translate(-50%, -50%) rotate(0deg);
      background: conic-gradient(#54D6FF, #8B7CFF 25%, #FF6EC7 50%, #FFC46B 72%, #54D6FF);
      animation: spinC 5.5s linear infinite;
    }

    .a-field::after {
      /* 玻璃内芯,只露出 1.7px 描边 */
      content: "";
      position: absolute;
      z-index: -1;
      inset: 1.7px;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(20, 28, 46, .92), rgba(8, 12, 22, .88));
    }

    .a-field:focus-within {
      box-shadow: 0 0 30px rgba(84, 214, 255, .42), 0 0 70px rgba(255, 110, 199, .24), 0 0 70px rgba(139, 124, 255, .2)
    }

    .a-field:focus-within::before {
      animation-duration: 1.8s
    }

    @keyframes spinC {
      to {
        transform: translate(-50%, -50%) rotate(360deg)
      }
    }

    .a-field input {
      flex: 1;
      background: none;
      border: none;
      outline: none;
      color: var(--txt);
      font: 500 1.05rem var(--en);
      letter-spacing: .1em;
      text-transform: uppercase;
      min-width: 0
    }

    .a-field input::placeholder {
      font-family: var(--cn);
      color: var(--faint);
      letter-spacing: 0;
      text-transform: none
    }

    .hint {
      font-size: .8rem;
      color: var(--faint);
      margin-top: 1rem
    }

    .hint button {
      appearance: none;
      padding: 0;
      border: 0;
      background: none;
      color: var(--cyan);
      cursor: pointer;
      font: inherit;
      font-family: var(--en)
    }

    .hint button:hover,
    .hint button:focus-visible {
      text-shadow: 0 0 12px rgba(84, 214, 255, .8)
    }

    #loading {
      display: none;
      margin-top: 2rem;
      font-size: .9rem;
      color: var(--dim)
    }

    #loading.show {
      display: flex;
      align-items: center;
      gap: 1rem
    }

    .scan {
      width: 200px;
      height: 3px;
      border-radius: 99px;
      background: rgba(158, 190, 255, .1);
      overflow: hidden;
      position: relative
    }

    .scan::after {
      content: "";
      position: absolute;
      width: 40%;
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      animation: scan 1.2s ease-in-out infinite
    }

    @keyframes scan {
      0% {
        left: -40%
      }

      100% {
        left: 100%
      }
    }

    .err {
      display: none;
      margin-top: 1.6rem;
      padding: 1rem 1.4rem;
      border-radius: 14px;
      font-size: .9rem;
      border: 1px solid rgba(255, 110, 199, .45);
      background: rgba(255, 110, 199, .07);
      color: var(--txt)
    }

    .err.show {
      display: block
    }

    #result {
      display: none;
      margin-top: 2.2rem
    }

    #result.show {
      display: block;
      animation: up .5s ease
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .r-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.2rem
    }

    .r-title {
      font: 700 1.4rem var(--en)
    }

    .r-badge {
      padding: .4em 1.2em;
      border-radius: 999px;
      font-size: .82rem;
      font-weight: 600;
      border: 1px solid
    }

    .r-badge.bull {
      color: var(--cyan);
      border-color: rgba(84, 214, 255, .6);
      background: rgba(84, 214, 255, .08);
      box-shadow: 0 0 18px rgba(84, 214, 255, .2)
    }

    .r-badge.bear {
      color: var(--pink);
      border-color: rgba(255, 110, 199, .55);
      background: rgba(255, 110, 199, .07)
    }

    .r-badge.neutral {
      color: var(--gold);
      border-color: rgba(255, 196, 107, .5);
      background: rgba(255, 196, 107, .06)
    }

    .r-sum {
      color: var(--txt);
      margin-bottom: 1.5rem
    }

    .r-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem
    }

    @media(max-width:860px) {
      .r-grid {
        grid-template-columns: 1fr
      }
    }

    .r-col {
      border-radius: 16px;
      padding: 1.2rem 1.4rem;
      border: 1px solid var(--line-soft);
      background: rgba(5, 7, 15, .55)
    }

    .r-col h4 {
      font-size: .9rem;
      margin-bottom: .8rem;
      letter-spacing: .06em
    }

    .r-col.pos h4 {
      color: var(--cyan)
    }

    .r-col.neg h4 {
      color: var(--pink)
    }

    .r-col.risk h4 {
      color: var(--gold)
    }

    .r-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .6rem
    }

    .r-col li {
      font-size: .87rem;
      color: var(--dim);
      padding-left: 1.15em;
      position: relative
    }

    .r-col li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .6em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: currentColor;
      opacity: .6
    }

    .r-foot {
      margin-top: 1.4rem;
      padding-top: 1rem;
      border-top: 1px dashed var(--line-soft);
      font-size: .75rem;
      color: var(--faint)
    }

    .raw-out {
      white-space: pre-wrap;
      font-size: .9rem;
      color: var(--dim)
    }

    /* ========== 步骤 ========== */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
      margin-top: 2.2rem;
      position: relative
    }

    @media(max-width:900px) {
      .steps {
        grid-template-columns: 1fr
      }
    }

    .step {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-lg);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 2rem;
      transition: transform .3s ease, border-color .3s ease;
      background: linear-gradient(165deg, rgba(158, 190, 255, .06), rgba(10, 15, 28, .55) 50%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .step i {
      font: 700 .8rem var(--en);
      letter-spacing: .2em;
      color: var(--cyan);
      font-style: normal
    }

    .step h3 {
      margin: .7rem 0 .5rem;
      font-size: 1.1rem
    }

    .step p {
      font-size: .9rem;
      color: var(--dim)
    }

    .step:hover {
      transform: translateY(-4px);
      border-color: rgba(84, 214, 255, .35)
    }

    /* ========== FAQ ========== */
    .faq {
      margin-top: 2.2rem;
      border-top: 1px solid var(--line-soft)
    }

    details {
      border-bottom: 1px solid var(--line-soft);
      padding: 1.4rem .4rem;
      cursor: pointer
    }

    summary {
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      gap: 1rem
    }

    summary::-webkit-details-marker {
      display: none
    }

    summary::after {
      content: "+";
      font: 400 1.5rem var(--en);
      color: var(--cyan);
      transition: transform .25s
    }

    details[open] summary::after {
      transform: rotate(45deg)
    }

    details p {
      margin-top: .9rem;
      color: var(--dim);
      font-size: .92rem;
      max-width: 70ch
    }

    /* ========== 巨型 CTA ========== */
    .mega {
      position: relative;
      text-align: center;
      overflow: hidden;
      padding: 5rem 0 5.5rem
    }

    .brandmark {
      position: relative;
      display: inline-block;
      user-select: none;
      font: 700 clamp(3.6rem, 12vw, 10.5rem)/1 var(--en);
      letter-spacing: -.015em;
      white-space: nowrap;
    }

    .bm-layer {
      display: block
    }

    .bm-glow {
      /* 底层霓虹泛光 */
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(92deg, #54D6FF 15%, #8B7CFF 55%, #FF6EC7 95%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: blur(30px);
      opacity: .5;
      animation: bmPulse 5s ease-in-out infinite;
    }

    @keyframes bmPulse {
      50% {
        opacity: .8
      }
    }

    .bm-main {
      /* 金属渐变主体 */
      position: relative;
      z-index: 1;
      background: linear-gradient(180deg, #F2F9FF 0%, #B8CCE8 38%, #54708F 72%, #2B3D57 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .bm-main b {
      /* 签名"7":点阵 LED 质感,呼应开场动画 */
      background:
        radial-gradient(circle at 2.5px 2.5px, rgba(240, 252, 255, .95) 1.4px, rgba(84, 214, 255, .28) 1.55px) 0 0/9px 9px,
        linear-gradient(180deg, #9FEBFF 0%, #54D6FF 48%, #1E7FB8 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 22px rgba(84, 214, 255, .65)) drop-shadow(0 0 60px rgba(84, 214, 255, .3));
    }

    .bm-sheen {
      /* 周期性掠过的高光 */
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(112deg, transparent 40%, rgba(255, 255, 255, .9) 50%, rgba(84, 214, 255, .6) 53%, transparent 62%) 220% 0/240% 100% no-repeat;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: bmSheen 4.6s ease-in-out infinite;
    }

    @keyframes bmSheen {

      0%,
      58% {
        background-position: 220% 0
      }

      100% {
        background-position: -140% 0
      }
    }

    .bm-tag {
      margin-top: 1.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      font: 500 .8rem var(--en);
      letter-spacing: .42em;
      text-transform: uppercase;
      color: var(--dim);
    }

    .bm-tag::before,
    .bm-tag::after {
      content: "";
      width: 64px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(84, 214, 255, .6));
    }

    .bm-tag::after {
      background: linear-gradient(90deg, rgba(84, 214, 255, .6), transparent)
    }

    .mega .btn {
      margin-top: 3rem
    }

    /* ========== 页脚 ========== */
    footer {
      border-top: 1px solid var(--line-soft)
    }

    .f-in {
      width: min(1160px, 92vw);
      margin: 0 auto;
      padding: 3rem 0;
      display: flex;
      flex-direction: column;
      gap: 1.6rem
    }

    .disclaimer {
      font-size: .78rem;
      color: var(--faint);
      line-height: 1.9;
      border: 1px dashed var(--line);
      border-radius: 14px;
      padding: 1.2rem 1.5rem
    }

    .disclaimer b {
      color: var(--dim)
    }

    .f-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font: 400 .8rem var(--en);
      color: var(--faint)
    }

    /* ========== 用户反馈墙 ========== */
    .tm-stage {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 1.1rem;
      margin-top: 2.2rem;
      align-items: stretch;
    }

    .tm-feature {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3rem 3.2rem 2.6rem;
      border-radius: var(--r-lg);
      border: 1px solid rgba(255, 255, 255, .10);
      background: linear-gradient(165deg, rgba(158, 190, 255, .09), rgba(10, 15, 28, .42) 50%);
      backdrop-filter: blur(22px) saturate(1.4);
      -webkit-backdrop-filter: blur(22px) saturate(1.4);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 44px rgba(0, 0, 0, .38);
      overflow: hidden;
      min-height: 340px;
    }

    .tm-qmark {
      position: absolute;
      top: .4rem;
      left: 1.6rem;
      font-size: 9rem;
      line-height: 1;
      font-weight: 700;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: .3;
      pointer-events: none;
    }

    .tm-quote {
      position: relative;
      font-size: 1.28rem;
      line-height: 2;
      color: var(--txt);
      transition: opacity .35s ease, transform .35s ease;
    }

    .tm-quote.fade {
      opacity: 0;
      transform: translateY(10px);
    }

    .tm-feature .tm-meta {
      display: flex;
      align-items: center;
      gap: .9rem;
      margin-top: 2rem;
      transition: opacity .35s ease;
    }

    .tm-feature .tm-meta.fade { opacity: 0 }

    .tm-progress {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: rgba(158, 190, 255, .10);
    }

    .tm-progress i {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
    }

    .tm-progress i.run {
      animation: tmProg var(--tmdur, 6s) linear forwards;
    }

    @keyframes tmProg {
      from { width: 0 }
      to { width: 100% }
    }

    .tm-list {
      position: relative;
      max-height: 440px;
      overflow: hidden;
      mask: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
    }

    .tm-ltrack {
      display: flex;
      flex-direction: column;
      gap: .55rem;
      will-change: transform;
      animation: tmScroll 36s linear infinite;
    }

    .tm-stage:hover .tm-ltrack {
      animation-play-state: paused;
    }

    @keyframes tmScroll {
      to { transform: translateY(calc(-50% - .275rem)) }
    }

    .tm-item {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding: .72rem .95rem;
      border-radius: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background .25s ease, border-color .25s ease, transform .25s ease;
    }

    .tm-item:hover {
      background: rgba(158, 190, 255, .06);
    }

    .tm-item.on {
      border-color: rgba(84, 214, 255, .35);
      background: linear-gradient(165deg, rgba(84, 214, 255, .10), rgba(10, 15, 28, .5));
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 24px rgba(0, 0, 0, .3);
      transform: translateX(-4px);
    }

    .tm-item .tm-name { font-size: .9rem }
    .tm-item .tm-role { font-size: .74rem }

    @media (max-width: 880px) {
      .tm-stage { grid-template-columns: 1fr }
      .tm-list { max-height: 200px }
      .tm-feature { padding: 2.4rem 1.6rem 2rem; min-height: 300px }
      .tm-quote { font-size: 1.05rem }
    }

    .tm-meta {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-top: 1rem
    }

    .tm-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex: none;
      font: 700 .8rem/34px var(--en);
      text-align: center;
      color: #05070F;
      background: linear-gradient(135deg, var(--cyan), var(--violet))
    }

    .tm-card:nth-child(even) .tm-av {
      background: linear-gradient(135deg, var(--violet), var(--pink))
    }

    .tm-name {
      font-size: .86rem;
      font-weight: 600
    }

    .tm-role {
      font-size: .74rem;
      color: var(--faint)
    }

    .tm-tag {
      display: inline-block;
      margin-right: .6em;
      padding: .2em .7em;
      border-radius: 999px;
      font-size: .72rem;
      vertical-align: 1px;
      border: 1px solid rgba(255, 196, 107, .5);
      color: var(--gold)
    }

    @media(max-width:900px) {
      .tm-wall {
        grid-template-columns: 1fr 1fr
      }

      .tm-col:nth-child(3) {
        display: none
      }
    }

    @media(max-width:620px) {
      .tm-wall {
        grid-template-columns: 1fr
      }

      .tm-col:nth-child(2) {
        display: none
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .tm-track {
        animation: none
      }
    }

    /* ========== 语言切换 ========== */
    #langSelect {
      min-width: 108px;
      letter-spacing: .02em;
      cursor: pointer;
      appearance: auto;
    }

    #langSelect option { color: #111; background: #fff }

    html[dir="rtl"] body { font-family: Arial, var(--cn), sans-serif }

    .f-note {
      font-size: .8rem;
      color: var(--dim)
    }

    main {
      opacity: 0;
      transition: opacity .8s ease .1s
    }

    main.show {
      opacity: 1
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
      }

      .hero-bgv video {
        display: none
      }
    }

          .report-container {
            display: none;
            margin-top: 2.5rem;
            background: rgba(10, 15, 30, 0.65) !important;
            backdrop-filter: blur(20px) !important;
            border: 1px solid rgba(84, 214, 255, 0.25) !important;
            border-radius: 18px !important;
            padding: 2.2rem !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
          }

          .report-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1.2rem;
            margin-bottom: 1.8rem;
          }

          .report-title {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffffff, #b8c6db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0;
            letter-spacing: 0.05em;
          }

          .report-sentiment-badge {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--gold);
            border: 1px solid rgba(255, 196, 107, 0.35);
            padding: 0.5rem 1.2rem;
            border-radius: 99px;
            background: rgba(255, 196, 107, 0.06);
            box-shadow: 0 0 15px rgba(255, 196, 107, 0.1);
          }

          .report-grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.8rem;
          }

          .report-indicator-card {
            background: linear-gradient(165deg, rgba(158, 190, 255, 0.06), rgba(10, 15, 28, 0.38)) !important;
            border: 1px solid rgba(255, 255, 255, 0.10) !important;
            backdrop-filter: blur(20px) saturate(1.4);
            -webkit-backdrop-filter: blur(20px) saturate(1.4);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
            padding: 1.4rem !important;
            border-radius: 14px !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
            transition: border-color 0.3s, transform 0.3s !important;
          }

          .report-indicator-card:hover {
            border-color: rgba(84, 214, 255, 0.3) !important;
            transform: translateY(-2px) !important;
          }

          .report-indicator-label {
            font-size: 0.85rem;
            color: var(--dim);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
          }

          .report-indicator-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--cyan);
            font-family: var(--en);
          }

          .report-suggestion-box {
            background: linear-gradient(135deg, rgba(84, 214, 255, 0.05), rgba(139, 124, 255, 0.03)) !important;
            border: 1px solid rgba(84, 214, 255, 0.2) !important;
            border-radius: 14px !important;
            padding: 1.8rem !important;
            margin-bottom: 1.8rem !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
          }

          .report-suggestion-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            margin-top: 0;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
          }

          .report-suggestion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 1.2rem;
            margin-bottom: 1.2rem;
          }

          .report-suggestion-rationale-title {
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 0.6rem;
            font-weight: 600;
          }

          .report-suggestion-rationale-list {
            margin: 0;
            padding-left: 1.2rem;
            font-size: 0.92rem;
            color: var(--dim);
            line-height: 1.7;
          }

          .report-suggestion-rationale-list li {
            margin-bottom: 0.5rem;
          }

          .report-multiperiod-box {
            background: rgba(255, 255, 255, 0.015) !important;
            border: 1px solid rgba(255, 255, 255, 0.04) !important;
            border-radius: 14px !important;
            padding: 1.5rem !important;
            margin-bottom: 1.8rem !important;
          }

          .report-multiperiod-title {
            font-size: 1.05rem;
            color: #fff;
            margin-top: 0;
            margin-bottom: 0.6rem;
            font-weight: 700;
          }

          .report-multiperiod-desc {
            color: var(--dim);
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 0.88rem;
          }

          .report-multiperiod-list {
            margin: 0;
            padding-left: 1.2rem;
            color: var(--dim);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            font-size: 0.92rem;
          }

          .report-body-box {
            background: rgba(5, 7, 15, 0.45) !important;
            border: 1px solid rgba(255, 255, 255, 0.04) !important;
            border-radius: 14px !important;
            padding: 1.8rem !important;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3) !important;
          }

          .report-body-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-top: 0;
            margin-bottom: 1.2rem;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
            padding-bottom: 0.8rem;
            letter-spacing: 0.05em;
          }

          .report-body h3 {
            font-size: 1.2rem !important;
            font-weight: 700 !important;
            color: #fff !important;
            border-left: 3px solid var(--cyan) !important;
            padding-left: 0.8rem !important;
            margin-top: 1.8rem !important;
            margin-bottom: 0.8rem !important;
            letter-spacing: 0.05em;
          }

          .report-body h4 {
            font-size: 1.05rem !important;
            font-weight: 600 !important;
            color: var(--cyan) !important;
            margin-top: 1.2rem !important;
            margin-bottom: 0.5rem !important;
          }

          .report-body p {
            font-size: 0.94rem !important;
            line-height: 1.8 !important;
            color: rgba(255, 255, 255, 0.72) !important;
            margin-bottom: 1rem !important;
            text-align: justify;
          }

          .report-body strong {
            color: #fff !important;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
          }

          .report-body ul {
            padding-left: 1.2rem !important;
            margin-bottom: 1rem !important;
            list-style-type: square !important;
            color: var(--cyan) !important;
          }

          .report-body li {
            font-size: 0.94rem !important;
            line-height: 1.8 !important;
            color: rgba(255, 255, 255, 0.72) !important;
            margin-bottom: 0.5rem !important;
          }

          .report-disclaimer {
            margin-top: 1.8rem;
            font-size: 0.78rem;
            color: var(--faint);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.2rem;
            line-height: 1.6;
          }
