:root {
  --ink: #101626;
  --muted: #718097;
  --line: rgba(154, 170, 196, 0.26);
  --bg: #eef2f7;
  --panel: #ffffff;
  --navy: #071425;
  --navy-2: #0d243f;
  --blue: #1b67c9;
  --cyan: #18a4d8;
  --red: #d54c43;
  --orange: #e29a3b;
  --green: #31a66a;
  --violet: #7a67d8;
  --shadow: 0 22px 60px rgba(10, 23, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #071425 0, #071425 430px, transparent 430px),
    linear-gradient(180deg, #eef2f7 0%, #f7f9fc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: rgba(7, 20, 37, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  color: #071425;
  background: linear-gradient(135deg, #ffffff, #b9dafb);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 14px 30px rgba(24, 164, 216, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

main {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 28px;
  align-items: stretch;
  padding: 64px 0 24px;
}

.hero-copy {
  min-height: 520px;
  padding: clamp(34px, 5vw, 62px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(27, 103, 201, 0.24), rgba(24, 164, 216, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8ed7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
a,
strong {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  color: #071425;
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 164, 216, 0.2);
}

.button.subtle {
  color: #d9edff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.terminal-panel {
  min-height: 520px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #0b1d33;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.terminal-head,
.terminal-stats,
.ticker-row {
  display: grid;
  gap: 12px;
}

.terminal-head {
  grid-template-columns: 1fr auto;
  align-items: start;
  margin-bottom: 24px;
}

.panel-label,
.terminal-stats span,
.ticker-row span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.terminal-head strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #a7f2cb;
  background: rgba(49, 166, 106, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.rank-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.rank-card {
  min-height: 82px;
  padding: 12px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-card span,
.rank-card strong {
  display: block;
}

.rank-card span {
  min-height: 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.rank-card strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.rank-card.hot {
  border-top: 3px solid var(--red);
}

.rank-card.warm {
  border-top: 3px solid var(--orange);
}

.rank-card.steady {
  border-top: 3px solid var(--green);
}

.rank-card.cool {
  border-top: 3px solid var(--violet);
}

.rank-card.quiet {
  border-top: 3px solid #9aa9bd;
}

.signal-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  height: 190px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.045);
}

.signal-chart span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #8ed7ff, #1b67c9);
}

.terminal-stats {
  grid-template-columns: 0.8fr 0.7fr 1.2fr;
}

.terminal-stats div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.terminal-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.ticker-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 0 42px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.ticker-row span {
  color: var(--muted);
}

.ticker-row strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.section {
  padding: 28px 0 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 96px;
  padding: 26px 0;
}

.section-intro .eyebrow,
.report-heading .eyebrow {
  color: var(--blue);
}

.section-intro h2,
.disclaimer h2,
.report-heading h1 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.18;
}

.section-intro p,
.module-card p,
.disclaimer p,
.report-heading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.module-grid {
  display: grid;
  gap: 14px;
}

.module-card,
.disclaimer,
.report-heading,
.report-frame-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.module-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  min-height: 160px;
  padding: 24px;
}

.module-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(27, 103, 201, 0.92), rgba(11, 29, 51, 0.96)),
    var(--navy-2);
}

.module-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.module-index {
  grid-row: span 3;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.module-card h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.module-link {
  align-self: end;
  color: #aee6ff;
  font-size: 13px;
  font-weight: 900;
}

.disclaimer {
  margin: 34px 0 50px;
  padding: 26px;
  border-left: 5px solid var(--orange);
}

.disclaimer-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-shell {
  padding: 26px 0 50px;
}

.report-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding: 24px;
}

.report-heading h1 {
  font-size: 30px;
}

.report-heading .button.subtle {
  color: var(--navy);
  background: #eef5ff;
  border-color: #cddcf3;
}

.report-frame-wrap {
  height: calc(100vh - 190px);
  min-height: 720px;
  overflow: hidden;
}

.report-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.disclaimer.compact {
  margin-bottom: 0;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: 56px 0 24px;
}

.hero-command,
.overview-board {
  min-height: 500px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.hero-command {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(135deg, rgba(7, 20, 37, 0.88), rgba(11, 29, 51, 0.64)),
    linear-gradient(135deg, rgba(27, 103, 201, 0.22), rgba(24, 164, 216, 0.06)),
    url("Abstract_financial_technology__2026-06-18T04-02-26.png") center / cover;
  overflow: hidden;
}

.hero-command h1 {
  margin-bottom: 20px;
  white-space: nowrap;
  font-size: clamp(56px, 6vw, 82px);
}

.hero-summary {
  max-width: 460px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-tags span {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(142, 215, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #d9edff;
  font-size: 13px;
  font-weight: 800;
}

.overview-board {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #0b1d33;
}

.board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.board-header strong {
  font-size: 54px;
  line-height: 0.9;
}

.board-status {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 10px;
  margin-bottom: 16px;
}

.board-status span {
  min-height: 68px;
  padding: 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.45;
}

.board-status strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
}

.board-list {
  display: grid;
  gap: 10px;
  max-height: 600px;
  overflow: auto;
  padding-right: 2px;
}

.board-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.board-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.item-code {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 36px;
  border-radius: 8px;
  color: #071425;
  background: #8ed7ff;
  font-size: 12px;
  font-weight: 900;
}

.item-code.accent {
  background: #a7f2cb;
}

.item-code.accent2 {
  background: #f9c6c6;
  color: #8b1a1a;
}

.item-code.accent3 {
  background: #d4c5f9;
  color: #4a2d8f;
}

.item-code.accent4 {
  background: #ffe0b2;
  color: #e65100;
}

.item-title {
  font-weight: 900;
  min-width: 0;
}

.item-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  white-space: nowrap;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 10px;
  height: 230px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.045);
}

.pulse-grid span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #8ed7ff, #1b67c9);
}

.report-section {
  padding: 30px 0 12px;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-kicker h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-card:hover {
  transform: translateY(-2px);
}

.home-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 29, 51, 0.94), rgba(27, 103, 201, 0.9)),
    var(--navy-2);
}

.home-card h3 {
  margin: 22px 0 12px;
  font-size: 25px;
  line-height: 1.2;
}

.home-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.home-card .module-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
}

.home-card.featured .module-link {
  color: #aee6ff;
}

.report-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.report-card:hover {
  transform: translateY(-2px);
}

.report-card.primary-report {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(27, 103, 201, 0.94), rgba(11, 29, 51, 0.97)),
    var(--navy-2);
}

.report-card.qdii-report {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 244, 0.96)),
    #fff;
}

.report-card.top100-report {
  background:
    linear-gradient(135deg, rgba(255, 245, 245, 0.96), rgba(253, 237, 237, 0.96)),
    #fff;
}

.report-card-top,
.report-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.report-card-top {
  justify-content: space-between;
  margin-bottom: 30px;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(27, 103, 201, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.primary-report .report-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #aee6ff;
}

.report-date {
  color: var(--muted);
  font-size: 13px;
}

.primary-report .report-date,
.primary-report p {
  color: rgba(255, 255, 255, 0.68);
}

.report-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.18;
}

.report-card p {
  color: var(--muted);
  line-height: 1.8;
}

.report-metrics {
  margin-top: auto;
  padding-top: 26px;
}

.report-metrics span {
  min-width: 116px;
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: #f3f6fb;
  font-size: 12px;
}

.primary-report .report-metrics span {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.report-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.primary-report .report-metrics strong {
  color: #fff;
}

.report-card .module-link {
  margin-top: 22px;
}

.qdii-report .module-link {
  color: var(--blue);
}

.top100-report .module-link {
  color: #c0392b;
}

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(180deg, #071425 0, #071425 720px, transparent 720px),
      linear-gradient(180deg, #eef2f7 0%, #f7f9fc 100%);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero,
  .split-section,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy,
  .hero-command,
  .terminal-panel {
    min-height: auto;
  }

  .section-intro {
    position: static;
    padding-bottom: 0;
  }

  .ticker-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-card-grid {
    grid-template-columns: 1fr;
  }

  .home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-frame-wrap {
    height: 78vh;
    min-height: 560px;
  }

  .board-list {
    max-height: none;
  }
}

@media (max-width: 560px) {
  main,
  .nav {
    width: min(100% - 22px, 1200px);
  }

  .hero-copy,
  .hero-command,
  .terminal-panel,
  .overview-board,
  .module-card,
  .report-card,
  .report-heading {
    padding: 20px;
  }

  .rank-strip,
  .ticker-row,
  .terminal-stats,
  .board-status,
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .signal-chart {
    height: 150px;
  }

  .board-item {
    grid-template-columns: 1fr;
  }

  .hero-command h1 {
    white-space: normal;
    font-size: 46px;
  }

  .section-kicker {
    display: block;
  }

  .home-card {
    min-height: 220px;
  }

  .pulse-grid {
    height: 150px;
  }

  .button {
    width: 100%;
  }
}

/* Product Design: finance news portal direction */
:root {
  --ink: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.13);
  --bg: #f7f3ea;
  --panel: #ffffff;
  --navy: #111827;
  --navy-2: #182235;
  --blue: #155eef;
  --cyan: #0e7490;
  --red: #dc3f3f;
  --orange: #c98a1c;
  --green: #15945f;
  --violet: #6941c6;
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 18px 45px rgba(17, 24, 39, 0.08);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--bg);
  overflow-x: hidden;
}

.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1200px, calc(100% - 48px));
}

.brand {
  color: var(--ink);
}

.brand-mark {
  color: #0b1a33;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  box-shadow: none;
}

.nav-links a {
  color: rgba(17, 24, 39, 0.72);
  font-weight: 800;
  overflow-wrap: normal;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(21, 94, 239, 0.08);
}

main,
.news-home {
  width: min(1200px, calc(100% - 48px));
}

.news-home {
  padding: 52px 0 56px;
}

.masthead {
  padding: 14px 0 34px;
  border-bottom: 2px solid var(--ink);
}

.masthead h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(52px, 7vw, 76px);
  line-height: 1.04;
  white-space: normal;
}

.masthead p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.masthead p span,
.main-story p span {
  display: inline;
}

.eyebrow.dark,
.section-intro .eyebrow,
.report-heading .eyebrow {
  color: var(--blue);
}

.market-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-top: 18px;
}

.main-story,
.brief-list,
.portal-columns > div,
.daily-status span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.main-story {
  min-height: 370px;
  padding: 34px;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 234, 0.9)),
    url("Abstract_financial_technology__2026-06-18T04-02-26.png") center / cover;
}

.story-label,
.disclaimer-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.main-story h2 {
  max-width: 700px;
  margin: 28px 0 14px;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.14;
}

.main-story h2 span {
  display: inline;
}

.main-story p {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.story-actions,
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.button.subtle {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.brief-list {
  padding: 12px 18px;
  min-width: 0;
}

.brief-list a {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brief-list a:last-child {
  border-bottom: 0;
}

.brief-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.brief-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.brief-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.daily-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.daily-status span {
  min-height: 78px;
  padding: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.daily-status b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 19px;
}

.portal-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.portal-columns > div {
  padding: 24px;
}

.portal-columns h3 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.25;
}

.portal-columns a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #263449;
  font-weight: 850;
  line-height: 1.45;
}

.portal-columns a:hover,
.brief-list a:hover,
.report-toolbar a:hover {
  color: var(--blue);
}

.disclaimer {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.disclaimer h2 {
  color: var(--ink);
}

.disclaimer p {
  color: var(--muted);
}

.report-shell {
  width: min(1400px, calc(100% - 48px));
  padding: 28px 0 48px;
}

.report-heading,
.report-frame-wrap,
.module-card,
.report-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.report-heading {
  padding: 24px;
  border-top: 3px solid var(--ink);
}

.report-heading h1 {
  color: var(--ink);
}

.report-heading p {
  color: var(--muted);
}

.report-frame-wrap {
  background: #fff;
}

.report-toolbar {
  color: var(--muted);
}

.report-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.report-card.primary-report,
.module-card.featured {
  color: #fff;
  background: #111827;
}

.report-badge {
  background: rgba(21, 94, 239, 0.1);
  color: var(--blue);
}

.item-code,
.brand-mark {
  border-radius: 8px;
}

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
      var(--bg);
  }

  .news-home,
  main,
  .nav,
  .report-shell {
    width: min(100% - 28px, 1200px);
  }

  .market-brief,
  .portal-columns {
    grid-template-columns: 1fr;
  }

  .daily-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masthead h1 {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  * {
    min-width: 0;
  }

  .news-home {
    padding-top: 32px;
    overflow: hidden;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .main-story,
  .portal-columns > div,
  .disclaimer,
  .report-heading {
    padding: 20px;
  }

  .daily-status {
    grid-template-columns: 1fr;
  }

  .masthead h1 {
    font-size: 42px;
  }

  .main-story h2 {
    font-size: 30px;
    word-break: break-all;
  }

  .main-story h2 span {
    display: block;
  }

  .masthead p,
  .main-story p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .masthead p span,
  .main-story p span {
    display: block;
  }
}
