
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #f0f4f8;
  --card: #ffffff;
  --text: #0d1117;
  --text-sub: #4b5563;
  --muted: #9ca3af;
  --border: #e5e7eb;
  --up: #059669;
  --up-bg: #d1fae5;
  --down: #dc2626;
  --down-bg: #fee2e2;
  --navy: #0a1628;
  --navy2: #0f2044;
  --radius: .75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 2px 8px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.03);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 48px rgba(0,0,0,.15);
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Animations ── */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-2 { animation: fadeUp .5s .1s ease both; }
.fade-up-3 { animation: fadeUp .5s .2s ease both; }

/* ── Header ── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center;
  padding: .85rem 1.5rem; max-width: 1000px; margin: 0 auto;
}
.logo {
  color: #fff; text-decoration: none;
  font-size: 1.05rem; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; gap: .5rem;
}
.logo-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: #fff; font-weight: 900;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 1.8s infinite; margin-left: .5rem;
}
.nav-menu { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.nav-menu a {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: .82rem; padding: .4rem .8rem; border-radius: .4rem;
  transition: background .15s, color .15s; font-weight: 500;
}
.nav-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; color: rgba(255,255,255,.8); font-size: 1.3rem; margin-left: auto; }

/* ── Market bar (header bottom) ── */
.market-bar {
  background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.06);
  padding: .35rem 0; overflow: hidden;
}
.market-bar-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; gap: 2rem; font-size: .75rem;
}
.mbar-item { display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.mbar-name { color: rgba(255,255,255,.45); }
.mbar-price { color: rgba(255,255,255,.85); font-weight: 600; font-variant-numeric: tabular-nums; }
.mbar-chg { font-weight: 600; }

/* ── Hero ── */
.hero {
  background: linear-gradient(-45deg, #0a1628, #0f2044, #1e3a8a, #1d4ed8);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  color: #fff; padding: 4rem 0 3.5rem; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(124,58,237,.25) 0%, transparent 60%);
}
.hero-inner { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700;
  padding: .3em .9em; border-radius: 2em; margin-bottom: 1.25rem;
  letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.28;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--accent); }
.hero-sub { margin-top: .75rem; font-size: .95rem; color: rgba(255,255,255,.7); max-width: 480px; }
.hero-cta {
  display: inline-block; margin-top: 1.75rem;
  background: var(--accent); color: var(--navy); font-weight: 700;
  padding: .7rem 1.6rem; border-radius: .5rem; text-decoration: none; font-size: .9rem;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
}
.hero-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,158,11,.5); text-decoration: none; color: var(--navy); }
.hero-glass-row { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-glass {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px); border-radius: .75rem; padding: .9rem 1.4rem;
  flex: 1; min-width: 120px;
}
.hero-glass-val { font-size: 1.8rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.hero-glass-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* ── Market panel (dark terminal) ── */
.market-panel {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.market-panel-header {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em;
}
.market-panel-header::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 1.8s infinite;
}
.market-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
.market-cell {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: .6rem; padding: .75rem 1rem;
}
.market-cell-name { font-size: .7rem; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.market-cell-price { font-size: 1.05rem; font-weight: 700; color: #f8fafc; font-variant-numeric: tabular-nums; }
.market-cell-chg { font-size: .78rem; font-weight: 700; margin-top: .1rem; }
.up { color: #4ade80; }
.dn { color: #f87171; }

/* ── Section heading ── */
.sh {
  display: flex; align-items: center; justify-content: space-between;
  margin: 2.5rem 0 1.25rem;
}
.sh-title {
  font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: .6rem;
}
.sh-title::before {
  content: ''; display: inline-block; width: 3px; height: 1.1em;
  background: linear-gradient(180deg, var(--primary), #7c3aed); border-radius: 2px;
}
.sh-link { font-size: .82rem; color: var(--primary); font-weight: 600; text-decoration: none; }
.sh-link:hover { text-decoration: underline; }

/* ── Stock cards ── */
.picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; }
.pick-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  overflow: hidden; position: relative;
}
.pick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pick-card-top {
  padding: 1.25rem 1.25rem .9rem;
  border-bottom: 1px solid var(--border);
}
.pick-card-rank {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .4rem; display: flex; align-items: center; gap: .4rem;
}
.rank-medal { font-size: .9rem; }
.pick-card-name { font-size: 1.05rem; font-weight: 700; line-height: 1.25; }
.pick-card-ticker { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.pick-card-body { padding: .9rem 1.25rem 1.1rem; }
.score-ring-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: .85rem; }
.score-ring {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--primary) calc(var(--pct) * 1%), #e5e7eb 0);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.score-ring::before {
  content: ''; position: absolute; width: 42px; height: 42px;
  background: var(--card); border-radius: 50%;
}
.score-ring-val {
  position: relative; z-index: 1; font-size: .72rem; font-weight: 800; color: var(--primary);
}
.score-ring-info { flex: 1; }
.score-ring-label { font-size: .7rem; color: var(--muted); }
.score-ring-trend { font-size: .85rem; font-weight: 600; margin-top: .1rem; }
.pick-metrics { display: flex; gap: .5rem; flex-wrap: wrap; }
.pick-metric {
  background: var(--bg); border-radius: .4rem; padding: .3rem .6rem;
  font-size: .75rem; color: var(--text-sub);
}
.pick-metric strong { color: var(--text); }
.pick-reasons { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.pick-reason { font-size: .78rem; color: var(--text-sub); padding: .2rem 0; display: flex; align-items: flex-start; gap: .4rem; }
.pick-reason::before { content: '›'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ── Performance badge ── */
.perf-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .25em .65em; border-radius: 2em; font-size: .72rem; font-weight: 700;
}
.perf-up { background: var(--up-bg); color: var(--up); }
.perf-dn { background: var(--down-bg); color: var(--down); }
.perf-ne { background: var(--border); color: var(--text-sub); }

/* ── Article TOC (anchor links to JP / US sections) ── */
.article-toc {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .9rem 1.1rem; margin: 1.2rem 0 1.5rem;
  box-shadow: var(--shadow);
}
.article-toc strong {
  display: block; font-size: .82rem; color: var(--text-sub);
  letter-spacing: .04em; margin-bottom: .5rem;
}
.article-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.article-toc li { font-size: .88rem; }
.article-toc a {
  color: var(--primary); text-decoration: none; font-weight: 500;
  border-bottom: 1px dashed transparent; transition: border-color .15s;
}
.article-toc a:hover { border-bottom-color: var(--primary); }

/* ── Source distinction tags (external data vs in-house AI) ── */
.src-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  padding: .15em .55em; border-radius: 1em; margin-left: .4rem;
  vertical-align: middle; letter-spacing: .02em;
}
.src-tag-ext { background: #e0f2fe; color: #075985; border: 1px solid #bae6fd; }
.src-tag-ai  { background: #ecfccb; color: #4d7c0f; border: 1px solid #d9f99d; }
.src-h-ext { font-size: .92rem; margin: .8rem 0 .25rem; color: #0f172a; }
.src-h-ai  { font-size: .92rem; margin: .8rem 0 .25rem; color: #365314; }
.src-note {
  font-size: .72rem; color: var(--text-sub); line-height: 1.55;
  margin: 0 0 .5rem; padding: .35rem .6rem;
  background: #f1f5f9; border-radius: .35rem; border-left: 3px solid #0ea5e9;
}
.src-note.ai { background: #f7fee7; border-left-color: #84cc16; }
.ai-section {
  background: linear-gradient(180deg, #fafff5 0%, #ffffff 100%);
  border: 1px solid #d9f99d; border-radius: .55rem;
  padding: .7rem .9rem .9rem; margin: .8rem 0;
}

/* ── Pick Detail Card (chart + analyst consensus + earnings + timeframes + take-profit) ── */
.pick-detail-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); margin-bottom: 1.5rem; overflow: hidden;
}
.pick-detail-head {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.pick-detail-chart {
  background: #fafbfc; padding: .75rem; text-align: center; border-bottom: 1px solid var(--border);
}
.pick-detail-chart img { max-width: 100%; height: auto; display: inline-block; border-radius: .4rem; }
.pick-detail-body { padding: 1rem 1.25rem 1.25rem; }
.detail-table {
  width: 100%; border-collapse: collapse; font-size: .85rem; line-height: 1.7;
}
.detail-table td, .detail-table th {
  padding: .35rem .6rem; border-bottom: 1px solid var(--border); text-align: left;
}
.detail-table td:first-child { color: var(--text-sub); width: 35%; }
.detail-table thead th { font-size: .75rem; color: var(--muted); font-weight: 600; }
.tf-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .65rem;
}
.tf-box {
  border: 1px solid var(--border); border-radius: .5rem; padding: .65rem .8rem;
  background: #fafbfc;
}
.tf-head { font-size: .78rem; color: var(--text-sub); margin-bottom: .25rem; }
.tf-label { font-weight: 700; font-size: .95rem; }
.tf-comment { font-size: .78rem; color: var(--text-sub); line-height: 1.55; margin-top: .2rem; }

/* ── Article cards (list) ── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.art-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: block; text-decoration: none; color: var(--text);
}
.art-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--text); }
.art-card-banner {
  height: 80px; display: flex; align-items: flex-end; padding: .75rem 1rem;
  background: linear-gradient(-45deg, var(--navy), var(--navy2), #1e3a8a);
  position: relative; overflow: hidden;
}
.art-card-banner::after {
  content: ''; position: absolute; right: -20px; top: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.art-card-date-big { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.art-card-date-sub { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .15rem; }
.art-card-body { padding: .9rem 1rem 1rem; }
.art-card-title { font-size: .9rem; font-weight: 700; line-height: 1.4; color: var(--text); }
.art-card-picks { display: flex; gap: .4rem; margin-top: .6rem; flex-wrap: wrap; }
.art-chip {
  background: var(--primary-light); color: var(--primary);
  font-size: .68rem; font-weight: 700; padding: .18em .55em; border-radius: 2em;
}

/* ── Stats row ── */
.stat-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.1rem 1.4rem; flex: 1; min-width: 140px;
  border-top: 3px solid var(--primary); position: relative;
}
.stat-card.up { border-color: var(--up); }
.stat-card.dn { border-color: var(--down); }
.stat-label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1.1; margin-top: .25rem; }
.stat-value.up { color: var(--up); }
.stat-value.dn { color: var(--down); }

/* ── Table ── */
.perf-table { width: 100%; border-collapse: collapse; font-size: .875rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.perf-table thead { background: var(--navy); }
.perf-table th { color: rgba(255,255,255,.8); padding: .65rem 1rem; text-align: left; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.perf-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--border); background: var(--card); }
.perf-table tr:last-child td { border-bottom: none; }
.perf-table tr:hover td { background: #f8faff; }

/* ── Affiliate ── */
.af-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 2rem 0;
  border: 1px solid rgba(255,255,255,.08);
}
.af-box-title {
  font-size: .72rem; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.af-notice { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: -.5rem; margin-bottom: 1rem; }
.af-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.af-item:last-child { border-bottom: none; }
.af-item-name { font-weight: 700; font-size: .9rem; color: #fff; }
.af-item-desc { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.af-btn {
  background: var(--accent); color: var(--navy); padding: .5rem 1.1rem; border-radius: .4rem;
  font-size: .82rem; font-weight: 800; text-decoration: none; white-space: nowrap;
  transition: transform .15s, box-shadow .15s; flex-shrink: 0;
}
.af-btn:hover { transform: scale(1.03); text-decoration: none; color: var(--navy); box-shadow: 0 4px 12px rgba(245,158,11,.4); }

/* ── Article page ── */
.article-wrap { max-width: 800px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.art-header {
  background: linear-gradient(-45deg, var(--navy), #1e3a8a, #1d4ed8);
  background-size: 200% 200%; animation: gradientShift 10s ease infinite;
  border-radius: var(--radius-lg); padding: 2rem 2rem 1.75rem; margin-bottom: 2rem; color: #fff;
}
.art-header h1 { font-size: clamp(1.15rem, 3vw, 1.55rem); line-height: 1.35; font-weight: 700; }
.art-header-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .75rem; }
.art-header-meta span { font-size: .75rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .3rem; }
h2 {
  font-size: 1.1rem; font-weight: 700; margin: 2.25rem 0 .85rem;
  padding: .65rem 1rem .65rem 1.1rem;
  background: linear-gradient(90deg, #dbeafe, #ede9fe);
  border-left: 4px solid var(--primary); border-radius: 0 .5rem .5rem 0;
}
h3 { font-size: .95rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: var(--primary-dark); }
p { margin: .7rem 0; font-size: .93rem; line-height: 1.8; }
ul { padding-left: 1.5rem; margin: .6rem 0; }
li { margin: .35rem 0; font-size: .9rem; }
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
blockquote {
  background: #fffbeb; border-left: 4px solid var(--accent);
  padding: .8rem 1.2rem; margin: 1.25rem 0; font-size: .88rem;
  color: var(--text-sub); border-radius: 0 .5rem .5rem 0;
}
code { background: #f1f5f9; padding: .15em .4em; border-radius: .3em; font-size: .84em; font-family: 'Courier New', monospace; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.sentiment-badge {
  display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .78rem; font-weight: 600; padding: .3em .9em; border-radius: 2em; margin-bottom: 1rem;
}
.portfolio-table { width: 100%; border-collapse: collapse; font-size: .875rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 1rem 0; }
.portfolio-table thead { background: var(--navy); }
.portfolio-table th { color: rgba(255,255,255,.75); padding: .65rem 1rem; text-align: left; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.portfolio-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--border); background: var(--card); }
.portfolio-table tr:last-child td { border-bottom: none; }
.risk-hi { color: var(--down); font-weight: 700; }
.risk-lo { color: var(--up); font-weight: 700; }
.risk-md { color: var(--accent-dark); font-weight: 700; }

/* ── Footer ── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.5); margin-top: 4rem; font-size: .83rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 0 1.5rem; }
.footer-logo { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.footer-desc { font-size: .8rem; }
.footer-col-title { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.footer-grid a { display: block; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: .3rem; font-size: .82rem; transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .72rem; color: rgba(255,255,255,.3); }

/* ── Editorial ── */
.editorial-intro {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-bottom: 1.75rem; color: #fff;
}
.intro-lead { font-size: 1.02rem; line-height: 1.8; color: rgba(255,255,255,.9); }
.intro-picks { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .6rem; }
.intro-picks strong { color: var(--accent); }

.editorial-summary {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.summary-header {
  font-size: .85rem; font-weight: 800; color: #92400e;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem;
}
.summary-list { padding-left: 1.4rem; }
.summary-list li { margin: .45rem 0; font-size: .9rem; line-height: 1.65; }
.txt-up { color: var(--up); font-weight: 700; }
.txt-dn { color: var(--down); font-weight: 700; }

.editorial-spotlight {
  background: var(--card); border: 2px solid var(--primary);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 1.75rem 0;
  position: relative; overflow: hidden;
}
.editorial-spotlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), #7c3aed, var(--accent));
}
.spotlight-badge {
  font-size: .72rem; font-weight: 800; color: var(--accent); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .4rem;
}
.spotlight-name { font-size: 1.35rem; font-weight: 800; color: var(--text); }
.spotlight-ticker { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.spotlight-metrics { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.spotlight-metric {
  background: var(--bg); border-radius: .5rem; padding: .45rem .85rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.metric-label { font-size: .68rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.metric-val { font-size: .95rem; font-weight: 700; color: var(--text); }
.spotlight-comment { font-size: .9rem; color: var(--text-sub); margin-bottom: .5rem; }
.spotlight-risk-desc { font-size: .85rem; color: var(--text-sub); padding: .5rem .75rem; background: var(--primary-light); border-radius: .4rem; }
.spotlight-reasons { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.reasons-title { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.spotlight-reasons ul { padding-left: 1.25rem; }
.spotlight-reasons li { font-size: .85rem; color: var(--text-sub); margin: .3rem 0; }

.editorial-context {
  background: #f8faff; border: 1px solid var(--primary-light);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin: 1.5rem 0;
}
.context-header { font-size: .78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.context-indices { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: .5rem; }
.ctx-index { font-size: .85rem; color: var(--text-sub); }
.context-note { font-size: .85rem; color: var(--text-sub); margin: .3rem 0; }
.context-relation { font-size: .88rem; color: var(--text); margin-top: .4rem; }

.editorial-checklist {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; margin: 1.75rem 0; background: var(--card);
}
.checklist-title { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checklist-col { background: var(--bg); border-radius: .6rem; padding: .85rem 1rem; }
.checklist-col.suited { border-top: 3px solid var(--up); }
.checklist-col.not-suited { border-top: 3px solid var(--down); }
.checklist-col-head { font-size: .78rem; font-weight: 700; margin-bottom: .5rem; }
.checklist-col.suited .checklist-col-head { color: var(--up); }
.checklist-col.not-suited .checklist-col-head { color: var(--down); }
.checklist-col ul { padding-left: 1.1rem; }
.checklist-col li { font-size: .8rem; color: var(--text-sub); margin: .3rem 0; line-height: 1.55; }
.checklist-note { font-size: .72rem; color: var(--muted); margin-top: .75rem; }

.editorial-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 2rem 0;
}
.cta-title { font-size: .78rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cta-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: .6rem; padding: 1rem; display: flex; flex-direction: column; gap: .4rem;
}
.cta-icon { font-size: 1.3rem; }
.cta-text { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.55; flex: 1; }
.cta-text strong { color: #fff; }
.cta-btn {
  display: inline-block; margin-top: .25rem; background: var(--accent); color: var(--navy);
  font-size: .78rem; font-weight: 800; padding: .4rem .85rem; border-radius: .35rem;
  text-decoration: none; text-align: center; transition: opacity .15s;
}
.cta-btn:hover { opacity: .85; text-decoration: none; color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-burger { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: .5rem 0; box-shadow: 0 8px 16px rgba(0,0,0,.3);
  }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .site-header { position: relative; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-glass-row { gap: .75rem; }
  .hero-glass { min-width: calc(50% - .5rem); }
  .picks-grid, .article-grid { grid-template-columns: 1fr; }
  .stat-row { gap: .75rem; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .market-bar-inner { gap: 1.25rem; overflow-x: auto; }
  .broker-cards { gap: 1rem; }
  .broker-detail-grid { grid-template-columns: 1fr; }
}

/* ── Affiliate ── */
.af-box { background: linear-gradient(135deg,#fef9ec,#fffdf5); border: 1.5px solid var(--accent); border-radius: var(--radius-lg); padding: 1.5rem; margin: 2rem 0; }
.af-box-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem; }
.af-box-title { font-weight: 700; font-size: 1rem; color: var(--accent-dark); }
.af-notice { font-size: .72rem; color: var(--text-sub); background: rgba(0,0,0,.05); padding: .25em .75em; border-radius: 2em; }
.af-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(245,158,11,.2); flex-wrap: wrap; }
.af-item:last-child { border-bottom: none; padding-bottom: 0; }
.af-item-info { flex: 1; min-width: 180px; }
.af-item-name { font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.af-item-desc { font-size: .82rem; color: var(--text-sub); margin-top: .2rem; }
.af-badge { background: var(--accent); color: #fff; font-size: .65rem; font-weight: 700; padding: .15em .6em; border-radius: 2em; }
.af-btn { display: inline-block; background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; padding: .6rem 1.2rem; border-radius: .5rem; text-decoration: none; font-weight: 700; font-size: .85rem; white-space: nowrap; transition: transform .15s, box-shadow .15s; }
.af-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.3); color: #fff; text-decoration: none; }
.af-btn-sm { display: inline-block; background: var(--primary); color: #fff; padding: .35rem .8rem; border-radius: .35rem; text-decoration: none; font-weight: 700; font-size: .78rem; white-space: nowrap; }

/* ── Share Buttons ── */
.share-buttons { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin: 2rem 0; text-align: center; }
.share-label { font-size: .82rem; color: var(--text-sub); font-weight: 600; margin-bottom: .75rem; }
.share-row { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-block; padding: .55rem 1.5rem; border-radius: .4rem; text-decoration: none; font-weight: 700; font-size: .85rem; transition: opacity .15s; }
.share-btn:hover { opacity: .85; text-decoration: none; }
.share-x { background: #000; color: #fff; }
.share-line { background: #06c755; color: #fff; }

/* ── AdSense ── */
.ad-unit { margin: 1.5rem 0; min-height: 90px; text-align: center; }

/* ── Broker Comparison ── */
.broker-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.broker-table th { background: var(--navy); color: #fff; padding: .7rem 1rem; text-align: left; font-size: .82rem; }
.broker-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.broker-table tr:nth-child(even) td { background: #f8fafc; }
.broker-badge { display: inline-block; background: var(--accent); color: #fff; font-size: .65rem; font-weight: 700; padding: .15em .7em; border-radius: 2em; white-space: nowrap; }
.broker-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0; }
.broker-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.broker-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.broker-rank { width: 36px; height: 36px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.broker-name { font-weight: 700; font-size: 1.05rem; }
.broker-detail-grid { display: grid; grid-template-columns: 1fr; gap: .5rem; margin-bottom: 1.25rem; font-size: .83rem; }
.broker-detail-grid > div { display: flex; flex-direction: column; gap: .15rem; }
.broker-label { font-size: .7rem; font-weight: 700; color: var(--text-sub); text-transform: uppercase; letter-spacing: .04em; }

/* ── FAQ ── */
.faq-list { margin: 1.5rem 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.faq-q { background: var(--primary-light); padding: .85rem 1.25rem; font-weight: 700; font-size: .9rem; color: var(--primary-dark); }
.faq-q::before { content: 'Q. '; }
.faq-a { padding: .85rem 1.25rem; font-size: .88rem; line-height: 1.7; background: var(--card); }

/* ── Hot Stocks ── */
.hot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; margin: 1.25rem 0; }
.hot-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); }
.hot-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.hot-label { display: inline-block; font-size: .65rem; font-weight: 800; padding: .2em .7em; border-radius: 2em; margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .05em; }
.hot-label-surge { background: #dcfce7; color: #166534; }
.hot-label-crash { background: #fee2e2; color: #991b1b; }
.hot-name { font-weight: 800; font-size: 1rem; }
.hot-ticker { font-size: .75rem; color: var(--muted); }
.hot-metrics { display: flex; flex-wrap: wrap; gap: .5rem; margin: .75rem 0; }
.hot-metric { background: var(--bg); border-radius: .4rem; padding: .3rem .65rem; font-size: .82rem; display: flex; gap: .35rem; align-items: center; }
.hot-metric-l { color: var(--muted); font-size: .72rem; }
.hot-signal { background: var(--bg); border-radius: var(--radius); padding: .85rem 1rem; margin-top: .75rem; }
/* ── News ── */
.news-list { display: flex; flex-direction: column; gap: .85rem; margin: 1rem 0; }
.news-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem 1.1rem; }
.news-ticker-tag { font-size: .68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .25rem; }
.news-title { font-size: .9rem; font-weight: 700; color: var(--text); text-decoration: none; display: block; margin-bottom: .2rem; line-height: 1.5; }
.news-title:hover { color: var(--primary); }
.news-meta { font-size: .72rem; color: var(--muted); }

/* ── Volume indicator ── */
.vol-high   { color: var(--up); font-weight: 700; }
.vol-low    { color: var(--muted); }
.vol-normal { color: var(--text); }

/* ── Learn ── */
.learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.learn-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: .5rem; transition: box-shadow .2s, transform .2s; }
.learn-card:hover { box-shadow: 0 8px 24px rgba(37,99,235,.12); transform: translateY(-2px); text-decoration: none; color: var(--text); }
.learn-card-category { font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; }
.learn-card-title { font-size: .95rem; font-weight: 700; line-height: 1.5; }
.learn-card-desc { font-size: .82rem; color: var(--text-sub); line-height: 1.55; flex: 1; }
.learn-card-more { font-size: .8rem; font-weight: 700; color: var(--primary); margin-top: .25rem; }
