/* ===========================================================
   激光财经 Jiguang Finance — 全站统一样式
   蓝白财经科技风 · 权威 · 全球化 · 数据感
   =========================================================== */

:root {
  --navy: #06142B;
  --navy-2: #0A1F45;
  --blue: #0A65FF;
  --cyan: #13C8FF;
  --silver: #D9E2EF;
  --silver-2: #EEF3FA;
  --white: #FFFFFF;
  --ink: #0E1B33;
  --muted: #5B6B86;
  --line: #E3EAF3;
  --up: #E0342B;      /* 财经习惯：涨红 */
  --down: #18A957;    /* 跌绿 */
  --shadow: 0 8px 30px rgba(6, 20, 43, 0.08);
  --shadow-sm: 0 2px 10px rgba(6, 20, 43, 0.06);
  --radius: 14px;
  --maxw: 1180px;
  --header-h: 110px;
  font-synthesis: none;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--silver-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.topline {
  background: var(--navy);
  color: var(--silver);
  font-size: 12.5px;
  letter-spacing: 0.3px;
}
.topline .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 34px;
}
.topline .clock { font-variant-numeric: tabular-nums; color: var(--cyan); font-weight: 600; }

.nav {
  display: flex; align-items: center; gap: 14px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.brand .logo-svg { height: 54px; width: 54px; display: block; flex-shrink: 0; }
.brand .brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.brand .brand-text strong { display: block; font-size: 22px; color: var(--navy); letter-spacing: 0.5px; line-height: 1.12; font-weight: 800; }
.brand .brand-text small { display: block; font-size: 9.5px; color: var(--blue); letter-spacing: 2.2px; font-weight: 700; margin-top: 3px; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; flex-wrap: nowrap;
}
.nav-links a {
  padding: 8px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  white-space: nowrap; transition: all 0.18s;
}
@media (min-width: 901px) and (max-width: 1240px) {
  .nav-links a { padding: 7px 6px; font-size: 12.5px; }
  .nav { gap: 8px; }
  .brand .logo-svg { height: 46px; width: 46px; }
  .brand .brand-text strong { font-size: 18px; }
  .brand .brand-text small { display: none; }
}
.nav-links a:hover { color: var(--blue); background: var(--silver-2); }
.nav-links a.active { color: var(--blue); font-weight: 600; background: var(--silver-2); }

/* nav actions: language switch + subscribe */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switch { display: inline-flex; border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; }
.lang-switch button {
  background: #fff; border: none; cursor: pointer; color: var(--muted);
  padding: 7px 12px; font-size: 13px; font-weight: 700; transition: 0.16s; line-height: 1.2;
}
.lang-switch button + button { border-left: 1.5px solid var(--line); }
.lang-switch button:hover { color: var(--blue); }
.lang-switch button.on { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; }

.subscribe-btn {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white); border: none; cursor: pointer;
  padding: 9px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 6px 16px rgba(10, 101, 255, 0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.subscribe-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(10, 101, 255, 0.36); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ TICKER ============================ */
.ticker-wrap {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ticker {
  display: flex; gap: 38px; white-space: nowrap;
  padding: 11px 0;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}
.ticker:hover { animation-play-state: paused; }
.ticker .t-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--silver); }
.ticker .t-item b { color: var(--white); font-weight: 600; }
.ticker .up { color: #ff7a72; }
.ticker .down { color: #5fe39b; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================ HERO ============================ */
.hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px;
  align-items: center;
  padding: 56px 20px;
}
.hero-copy .eyebrow {
  display: inline-block; color: var(--blue); font-weight: 800;
  letter-spacing: 3px; font-size: 14px; margin-bottom: 16px;
  padding: 6px 14px; background: rgba(10,101,255,0.08); border-radius: 30px;
}
.hero-copy h1 {
  font-size: 46px; line-height: 1.22; color: var(--navy);
  font-weight: 800; letter-spacing: 0.5px; margin-bottom: 18px;
}
.hero-copy p { font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 28px; line-height: 1.7; }
.hide-mobile { display: inline; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions a { padding: 13px 26px; border-radius: 12px; font-weight: 600; font-size: 15px; transition: 0.2s; }
.hero-actions .primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; box-shadow: 0 10px 24px rgba(10,101,255,0.3); }
.hero-actions .primary:hover { transform: translateY(-2px); }
.hero-actions .secondary { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.hero-actions .secondary:hover { border-color: var(--blue); color: var(--blue); }

.hero-card {
  background: linear-gradient(155deg, var(--navy), var(--navy-2) 70%, #0A3A8C);
  color: var(--white); border-radius: 18px; padding: 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(19,200,255,0.35), transparent 70%);
}
.hero-card .card-title { font-size: 12.5px; color: var(--cyan); letter-spacing: 2px; font-weight: 700; margin-bottom: 12px; }
.hero-card h2 { font-size: 22px; line-height: 1.4; margin-bottom: 12px; position: relative; z-index: 1; }
.hero-card p { font-size: 14px; color: var(--silver); opacity: 0.92; margin-bottom: 22px; position: relative; z-index: 1; }
.signal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.signal-grid div { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 12px; }
.signal-grid span { display: block; font-size: 12px; color: var(--cyan); margin-bottom: 2px; }
.signal-grid strong { font-size: 15px; }

/* ============================ SECTIONS ============================ */
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-head h2 {
  font-size: 23px; color: var(--navy); font-weight: 800; position: relative; padding-left: 14px;
}
.section-head h2::before {
  content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 5px;
  border-radius: 4px; background: linear-gradient(var(--blue), var(--cyan));
}
.section-head a { color: var(--blue); font-size: 14px; font-weight: 600; }
.section-head a:hover { text-decoration: underline; }
.section-head.compact h2 { font-size: 19px; }

.layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; padding: 14px 20px 40px; align-items: start; }
.main-column, .side-column { min-width: 0; }

/* Lead news */
.lead-news {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  margin-bottom: 16px; border-left: 4px solid var(--blue); transition: 0.2s;
}
.lead-news:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.lead-news .tag, .news-list .tag, .report-grid .tag {
  display: inline-block; background: rgba(10,101,255,0.1); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px;
}
.lead-news h3 { font-size: 22px; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.lead-news:hover h3 { color: var(--blue); }
.lead-news p { color: var(--muted); font-size: 15px; }
.lead-news .meta, .news-card .meta { font-size: 13px; color: var(--muted); margin-top: 12px; }

.news-list { display: grid; gap: 12px; }
.news-card {
  display: flex; gap: 16px; background: #fff; border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm); transition: 0.2s; align-items: center;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.news-card .cat { display: inline-block; background: var(--silver-2); color: var(--blue); font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 6px; align-self: flex-start; flex-shrink: 0; }
.news-card .body { flex: 1; min-width: 0; }
.news-card h4 { font-size: 16.5px; color: var(--navy); line-height: 1.45; font-weight: 600; }
.news-card:hover h4 { color: var(--blue); }
.news-card .meta { display: flex; gap: 12px; }

/* Timeline / flash */
.flash-box { background: #fff; border-radius: var(--radius); padding: 8px 18px; box-shadow: var(--shadow-sm); }
.timeline { position: relative; }
.timeline .item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.timeline .item:last-child { border-bottom: none; }
.timeline time { color: var(--blue); font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; flex-shrink: 0; width: 46px; }
.timeline .ft { font-size: 15px; color: var(--ink); }
.timeline .item.important .ft { font-weight: 600; }
.timeline .item.important time { color: var(--up); }
.flash-cat { display: inline-block; font-size: 11px; color: var(--muted); background: var(--silver-2); padding: 1px 7px; border-radius: 5px; margin-left: 6px; vertical-align: middle; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 14px 20px 40px; }
.category-grid article {
  background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  transition: 0.2s; border-top: 3px solid transparent; cursor: pointer;
}
.category-grid article:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-top-color: var(--blue); }
.category-grid b { display: block; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.category-grid p { font-size: 14px; color: var(--muted); }
.category-grid .ch-lead { display: block; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 13px; color: var(--blue); font-weight: 600; line-height: 1.5; }

/* ===== 商务合作 ===== */
.business { padding: 20px 20px 12px; }
.business-intro { font-size: 15.5px; color: var(--muted); max-width: 760px; line-height: 1.7; margin: -4px 0 22px; }
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.business-grid article {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 24px 22px; transition: 0.2s; overflow: hidden;
}
.business-grid article:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue); }
.business-grid .biz-no { position: absolute; top: 14px; right: 18px; font-size: 30px; font-weight: 800; color: rgba(10,101,255,0.10); letter-spacing: 1px; }
.business-grid h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; position: relative; z-index: 1; }
.business-grid p { font-size: 14px; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }
.business-cta { text-align: center; margin: 28px 0 8px; }
.business-cta .btn {
  display: inline-block; padding: 14px 38px; border-radius: 12px; font-weight: 700; font-size: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff;
  box-shadow: 0 10px 26px rgba(10,101,255,0.30); transition: 0.2s;
}
.business-cta .btn:hover { transform: translateY(-2px); }

/* Reports */
.reports { padding: 14px 20px 44px; }
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.report-grid article { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: 0.2s; }
.report-grid article:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.report-grid h3 { font-size: 18px; color: var(--navy); line-height: 1.45; margin-bottom: 8px; }
.report-grid article:hover h3 { color: var(--blue); }
.report-grid p { font-size: 14px; color: var(--muted); }

/* CTA cooperation banner */
.cta-banner {
  margin: 0 20px 44px; max-width: var(--maxw);
}
.cta-inner {
  max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), #0A3A8C);
  border-radius: 18px; padding: 34px 40px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-inner h3 { font-size: 24px; margin-bottom: 6px; }
.cta-inner p { color: var(--silver); opacity: 0.9; font-size: 15px; }
.cta-inner .btn { background: var(--cyan); color: var(--navy); padding: 13px 28px; border-radius: 12px; font-weight: 700; transition: 0.2s; }
.cta-inner .btn:hover { background: #fff; transform: translateY(-2px); }

/* ============================ PAGE HEADER (inner pages) ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0A2A66);
  color: #fff; padding: 46px 20px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(19,200,255,0.3), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--cyan); letter-spacing: 3px; font-size: 13px; font-weight: 700; }
.page-hero h1 { font-size: 34px; margin: 8px 0 8px; }
.page-hero p { color: var(--silver); max-width: 640px; font-size: 15.5px; }
.breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 0; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--ink); }

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; padding: 4px 0 20px; }
.filters button {
  background: #fff; border: 1.5px solid var(--line); color: var(--ink); cursor: pointer;
  padding: 7px 16px; border-radius: 20px; font-size: 14px; transition: 0.18s;
}
.filters button:hover { border-color: var(--blue); color: var(--blue); }
.filters button.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Markets tables */
.market-section { padding: 12px 20px 40px; }
.market-block { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 22px; overflow: hidden; }
.market-block .mb-head { padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.market-block .mb-head i { width: 6px; height: 18px; border-radius: 3px; background: linear-gradient(var(--blue), var(--cyan)); display: inline-block; }
table.market-table { width: 100%; border-collapse: collapse; }
table.market-table th { text-align: left; font-size: 12.5px; color: var(--muted); font-weight: 600; padding: 10px 22px; background: var(--silver-2); }
table.market-table th:nth-child(n+2), table.market-table td:nth-child(n+2) { text-align: right; }
table.market-table td { padding: 13px 22px; border-bottom: 1px solid var(--line); font-size: 15px; }
table.market-table tr:last-child td { border-bottom: none; }
table.market-table tr:hover td { background: #f8fbff; }
table.market-table .name { font-weight: 600; color: var(--navy); }
table.market-table .sym { font-size: 12px; color: var(--muted); }
.price-up { color: var(--up); font-weight: 600; font-variant-numeric: tabular-nums; }
.price-down { color: var(--down); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Article detail */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 36px; padding: 24px 20px 50px; align-items: start; }
.article-main { background: #fff; border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-sm); min-width: 0; }
.article-main .a-tag { display: inline-block; background: rgba(10,101,255,0.1); color: var(--blue); font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 6px; }
.article-main h1 { font-size: 30px; color: var(--navy); line-height: 1.35; margin: 14px 0; }
.article-main .a-meta { font-size: 13.5px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.article-cover { border-radius: 12px; margin-bottom: 22px; width: 100%; }
.article-body { font-size: 16.5px; color: #25324a; line-height: 1.95; }
.article-body p { margin-bottom: 18px; }
.article-body h2 { font-size: 21px; color: var(--navy); margin: 28px 0 12px; padding-left: 12px; border-left: 4px solid var(--blue); }
.article-tags { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; gap: 8px; flex-wrap: wrap; }
.article-tags a { background: var(--silver-2); color: var(--blue); font-size: 13px; padding: 5px 13px; border-radius: 20px; }
.article-tags a:hover { background: var(--blue); color: #fff; }
.aside-card { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.aside-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 14px; padding-left: 12px; border-left: 4px solid var(--blue); }
.aside-card .mini { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; color: var(--ink); }
.aside-card .mini:last-child { border-bottom: none; }
.aside-card .mini:hover { color: var(--blue); }

/* About / generic content */
.content-section { padding: 30px 20px 50px; }
.prose { background: #fff; border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-sm); }
.prose h2 { font-size: 22px; color: var(--navy); margin: 26px 0 12px; padding-left: 12px; border-left: 4px solid var(--blue); }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; color: #25324a; line-height: 1.9; margin-bottom: 16px; }
.prose ul { padding-left: 4px; margin-bottom: 16px; }
.prose ul li { padding: 7px 0 7px 26px; position: relative; color: #25324a; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.feature-grid .fc { background: var(--silver-2); border-radius: 12px; padding: 22px; }
.feature-grid .fc b { display: block; color: var(--navy); font-size: 17px; margin-bottom: 6px; }
.feature-grid .fc span { color: var(--muted); font-size: 14px; }

/* Forms */
.form-card { background: #fff; border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-sm); max-width: 640px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink); transition: 0.18s; background: #fff;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,101,255,0.12); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-submit { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; border: none; cursor: pointer; padding: 13px 30px; border-radius: 10px; font-size: 15px; font-weight: 600; box-shadow: 0 8px 20px rgba(10,101,255,0.28); transition: 0.2s; }
.form-submit:hover { transform: translateY(-2px); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success { background: rgba(24,169,87,0.1); color: var(--down); padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14.5px; display: none; }
.form-success.show { display: block; }

/* loading / empty */
.loading, .empty { text-align: center; padding: 50px 20px; color: var(--muted); font-size: 15px; }

/* ============================ FOOTER ============================ */
.footer { background: var(--navy); color: var(--silver); padding: 44px 20px 0; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand-link { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand .logo-svg-dark { height: 48px; width: 48px; display: block; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand-text strong { font-size: 20px; color: #fff; font-weight: 800; letter-spacing: 0.5px; line-height: 1.1; }
.footer-brand-text small { font-size: 9px; color: var(--cyan); letter-spacing: 2px; font-weight: 700; margin-top: 3px; }
.footer-brand p { font-size: 13.5px; opacity: 0.8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; opacity: 0.82; padding: 5px 0; transition: 0.15s; }
.footer-col a:hover { opacity: 1; color: var(--cyan); }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 12.5px; opacity: 0.7; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; opacity: 0.7; }

/* ============================ NEW: page head (inner pages) ============================ */
.page-head { padding: 40px 20px 6px; }
.page-head h1 { font-size: 32px; color: var(--navy); font-weight: 800; line-height: 1.25; }
.page-head p { color: var(--muted); font-size: 15.5px; max-width: 720px; margin-top: 10px; line-height: 1.7; }

/* wide variants on inner pages */
.news-list.wide { gap: 14px; padding-bottom: 40px; }
.report-grid.wide { padding-bottom: 44px; }
.flash-box.wide { margin-bottom: 44px; }

/* ============================ NEW: article ============================ */
#article-main { background: #fff; border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-sm); min-width: 0; }
#article-main .a-tag { display: inline-block; background: rgba(10,101,255,0.1); color: var(--blue); font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 6px; }
#article-main h1 { font-size: 30px; color: var(--navy); line-height: 1.35; margin: 14px 0; }
#article-main .a-meta { font-size: 13.5px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.a-tag-pill { display: inline-block; background: var(--silver-2); color: var(--blue); font-size: 13px; padding: 5px 13px; border-radius: 20px; }
.a-tag-pill:hover { background: var(--blue); color: #fff; }
.article-aside { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); min-width: 0; }
.article-aside h3 { font-size: 17px; color: var(--navy); margin-bottom: 14px; padding-left: 12px; border-left: 4px solid var(--blue); }
.article-aside .mini { display: block; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.article-aside .mini:last-child { border-bottom: none; }
.article-aside .mini:hover { color: var(--blue); }

/* report meta line + report card link wrap */
.report-meta { font-size: 13px; color: var(--muted); margin-top: 12px; }
.report-grid a, .article-aside a { color: inherit; }

/* ============================ NEW: about ============================ */
.about-body { padding: 16px 20px 50px; }
.about-lead { background: #fff; border-radius: var(--radius); padding: 30px 36px; box-shadow: var(--shadow-sm); font-size: 17px; color: #25324a; line-height: 1.9; border-left: 4px solid var(--blue); }
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 24px 0; }
.about-pillars article { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.about-pillars h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.about-pillars p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.disclaimer-block { background: var(--silver-2); border-radius: var(--radius); padding: 26px 30px; margin-top: 10px; border: 1px solid var(--line); }
.disclaimer-block h2 { font-size: 18px; color: var(--navy); margin-bottom: 10px; padding-left: 12px; border-left: 4px solid var(--muted); }
.disclaimer-block p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ============================ NEW: cooperation form ============================ */
.coop-form-wrap { padding: 10px 20px 50px; }
.coop-success { display: none; background: rgba(24,169,87,0.1); color: var(--down); padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14.5px; font-weight: 600; }
.coop-success.show { display: block; }
.coop-form { background: #fff; border-radius: var(--radius); padding: 30px 34px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink); transition: 0.18s; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,101,255,0.12); }
.field textarea { min-height: 110px; resize: vertical; }
.coop-form .btn { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; border: none; cursor: pointer; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; box-shadow: 0 8px 20px rgba(10,101,255,0.28); transition: 0.2s; }
.coop-form .btn:hover { transform: translateY(-2px); }

/* ============================ NEW: markets grid ============================ */
.markets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 18px 20px 50px; align-items: start; }
.markets-grid .market-block { margin-bottom: 0; }

/* ============================ NEW: footer extras ============================ */
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 12.5px; opacity: 0.72; line-height: 1.7; }
.footer-disclaimer strong { color: #fff; opacity: 0.9; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 26px; padding: 36px 20px; }
  .hero-copy h1 { font-size: 34px; }
  .layout { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .category-grid, .report-grid, .feature-grid, .business-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hide-mobile { display: none; }
  .brand .logo-svg { height: 44px; width: 44px; }
  .brand .brand-text strong { font-size: 19px; }
  .brand .brand-text small { font-size: 8.5px; letter-spacing: 1.6px; }

  .nav { gap: 10px; }
  .nav-toggle { display: flex; order: 3; }
  .nav-actions { order: 2; margin-left: auto; gap: 8px; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; box-shadow: var(--shadow);
    padding: 8px 16px 16px; margin-left: 0; order: 4; width: 100%;
    transform: translateY(-150%); transition: transform 0.3s; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; white-space: normal; }
  .subscribe-btn { display: none; }
  .lang-switch button { padding: 8px 12px; font-size: 13px; }
  #article-main, .prose, .form-card, .coop-form, .about-lead { padding: 24px 22px; }
  #article-main h1 { font-size: 24px; }
  .markets-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .coop-form { grid-template-columns: 1fr; }
  .page-head { padding: 30px 20px 4px; }
  .page-head h1 { font-size: 26px; }
}

@media (max-width: 600px) {
  :root { --header-h: 110px; }
  .hero-copy h1 { font-size: 26px; }
  .hero-copy p { font-size: 15px; }
  .hero-card { padding: 22px; }
  .page-hero h1 { font-size: 26px; }
  .section-head h2 { font-size: 20px; }
  .category-grid, .report-grid, .feature-grid, .business-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .brand img { height: 42px; }
  .brand .logo-svg { height: 40px; width: 40px; }
  .brand .brand-text strong { font-size: 17px; }
  .brand .brand-text small { display: none; }
  .business-intro { font-size: 14.5px; }
  .hero-copy h1 { font-size: 27px; line-height: 1.3; }
  .lead-news h3 { font-size: 19px; }
  .news-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-inner { padding: 26px 24px; }
  .cta-inner h3 { font-size: 20px; }
  table.market-table th, table.market-table td { padding: 11px 14px; font-size: 14px; }
  .market-table .sym { display: none; }
  .topline .container { font-size: 11px; }
  .topline span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 65%; }
}
