:root {
  --color-brand: #0f2a5f;
  --color-brand-dark: #091a3a;
  --color-brand-soft: #eaf1ff;
  --color-accent: #0ea5b7;
  --color-accent-soft: #e6f8fa;
  --color-bg: #f7f8fa;
  --color-card: #ffffff;
  --color-card-header: #fbfcfe;
  --color-soft-bg: #f8fafc;
  --color-border: #e6eaf0;
  --color-border-strong: #d8dee8;
  --color-title: #1f2937;
  --color-text: #4b5563;
  --color-muted: #7a8594;
  --color-light-text: #a0a8b8;
  --color-positive: #16a34a;
  --color-positive-soft: #eaf8ef;
  --color-negative: #dc2626;
  --color-negative-soft: #fef2f2;
  --color-warning: #d97706;
  --color-warning-soft: #fff7e6;
  --color-neutral: #64748b;
  --color-neutral-soft: #f1f5f9;
  --chart-blue: #2563eb;
  --chart-cyan: #0ea5b7;
  --chart-purple: #7c3aed;
  --chart-green: #16a34a;
  --chart-red: #dc2626;
  --chart-orange: #d97706;
  --chart-gray: #94a3b8;
  --report-primary: var(--color-brand);
  --report-secondary: #334155;
  --report-accent: var(--color-accent);
  --report-accent-warm: var(--color-warning);
  --report-highlight: var(--color-accent);
  --report-success: var(--color-positive);
  --report-warning: var(--color-warning);
  --report-danger: var(--color-negative);
  --report-border: var(--color-border);
  --report-soft-border: #eef1f7;
  --report-bg: var(--color-bg);
  --report-card: var(--color-card);
  --report-text: var(--color-title);
  --report-muted: var(--color-muted);
  --report-shadow: 0 10px 24px rgba(15, 42, 95, 0.08);
  --report-shadow-soft: 0 6px 18px rgba(20, 24, 40, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--report-text);
  background:
    linear-gradient(180deg, #fbfcfe 0%, var(--report-bg) 48%, #f1f5f9 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.78;
}

a {
  color: var(--color-accent);
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 48px), 1180px);
  max-width: none;
  margin: 18px auto 0;
  padding: 11px 14px;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(15, 42, 95, 0.08);
  backdrop-filter: blur(14px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--report-primary);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand) 62%, var(--color-accent));
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--report-primary);
  font-size: 16px;
  font-weight: 900;
}

.brand-copy small {
  color: var(--report-muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid #e8eef7;
  border-radius: 13px;
  background: #f8fafc;
}

.nav-link,
.button-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  color: var(--report-secondary);
  background: var(--color-card);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav .nav-link {
  border-color: transparent;
  border-radius: 10px;
  background: transparent;
}

.nav-link:hover,
.nav-link.active,
.button-link:hover {
  color: #ffffff;
  border-color: var(--report-primary);
  background: var(--report-primary);
}

.nav-link:hover,
.button-link:hover {
  transform: translateY(-1px);
}

.button-link {
  border-color: #d7e4ff;
  color: var(--report-primary);
  background: var(--color-brand-soft);
}

.site-page,
.stock-report-page {
  width: min(calc(100% - 48px), 1040px);
  max-width: none;
  margin: 0 auto;
  padding: 26px 0 68px;
  color: var(--report-text);
}

.site-hero,
.report-hero {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand) 58%, var(--color-accent) 100%);
  box-shadow: var(--report-shadow);
  color: #ffffff;
  margin-bottom: 18px;
}

.site-hero {
  display: grid;
  gap: 12px;
}

.site-title,
.report-title {
  font-size: 31px;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #ffffff;
  font-weight: 850;
}

.site-title {
  margin-bottom: 0;
}

.site-subtitle,
.intro {
  max-width: 820px;
  color: var(--report-muted);
  margin: 0;
  font-size: 16px;
}

.site-hero .site-subtitle,
.site-hero .intro,
.report-hero .intro {
  color: rgba(255, 255, 255, 0.78);
}

.report-back {
  margin: 0 0 18px;
}

.report-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.report-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.report-summary-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.summary-item {
  padding: 14px 15px;
  border: 1px solid var(--report-border);
  border-radius: 12px;
  background: var(--report-card);
  box-shadow: 0 8px 22px rgba(15, 42, 95, 0.05);
}

.summary-label {
  display: block;
  font-size: 13px;
  color: #7a8594;
  margin-bottom: 8px;
}

.summary-value {
  display: block;
  font-size: 15px;
  color: var(--report-primary);
  font-weight: 800;
}

.rating-strong-buy,
.rating-buy {
  color: var(--report-success);
}

.rating-hold {
  color: var(--color-neutral);
}

.rating-watch {
  color: var(--report-warning);
}

.rating-reduce,
.rating-avoid {
  color: var(--report-danger);
}

.text-up {
  color: var(--color-positive);
  font-weight: 700;
}

.text-down {
  color: var(--color-negative);
  font-weight: 700;
}

.report-content {
  display: block;
}

.source-report-page .report-hero {
  margin-bottom: 18px;
}

.source-report {
  position: relative;
  overflow: hidden;
  padding: 34px 38px;
  border: 1px solid #dfe6f0;
  border-radius: 14px;
  background: var(--report-card);
  box-shadow: 0 12px 28px rgba(15, 42, 95, 0.06);
}

.source-report::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--report-primary), var(--report-accent));
}

.source-report h1,
.source-report h2,
.source-report h3 {
  color: var(--report-primary);
  line-height: 1.35;
  letter-spacing: 0;
}

.source-report h1 {
  margin: 34px 0 16px;
  padding: 0 0 10px 14px;
  border-left: 4px solid var(--report-accent);
  border-bottom: 1px solid var(--report-soft-border);
  font-size: 24px;
}

.source-report > h1:first-child {
  margin-top: 0;
  padding-left: 0;
  border-left: 0;
  font-size: 28px;
}

.source-report h2 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.source-report h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.source-report p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.82;
}

.source-report strong {
  color: var(--report-primary);
  font-weight: 800;
}

.source-report a {
  color: #087f95;
  text-decoration-color: rgba(14, 165, 183, 0.35);
  text-underline-offset: 3px;
}

.source-report a:hover {
  color: var(--report-primary);
  text-decoration-color: var(--report-primary);
}

.source-report hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--report-soft-border);
}

.source-report ul,
.source-report ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.source-report li {
  margin-bottom: 7px;
  color: var(--color-text);
  line-height: 1.78;
}

.source-report code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--color-neutral-soft);
  color: var(--report-primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.source-report blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--report-accent);
  border-radius: 10px;
  background: var(--color-accent-soft);
  color: var(--color-brand);
}

.source-report blockquote p {
  margin-bottom: 0;
  color: var(--color-brand);
}

.source-table-wrap {
  width: 100%;
  overflow-x: visible;
  margin: 18px 0 20px;
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 42, 95, 0.04);
}

.source-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
}

.source-table-wrap th {
  padding: 11px 13px;
  background: var(--color-card-header);
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--report-soft-border);
  overflow-wrap: anywhere;
  white-space: normal;
}

.source-table-wrap td {
  padding: 12px 13px;
  color: var(--color-text);
  border-bottom: 1px solid #f1f3f8;
  vertical-align: top;
  font-size: 13.5px;
  line-height: 1.62;
  overflow-wrap: anywhere;
  white-space: normal;
}

.source-table-wrap tr:last-child td {
  border-bottom: 0;
}

.source-table-wrap tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.report-section {
  padding: 24px 28px;
  border: 1px solid var(--report-border);
  border-radius: 14px;
  background: var(--report-card);
  margin-bottom: 16px;
  box-shadow: var(--report-shadow-soft);
}

.report-section h2 {
  font-size: 21px;
  color: var(--report-primary);
  margin: 0 0 16px;
  padding: 0 0 10px 12px;
  border-left: 4px solid var(--report-accent);
  border-bottom: 1px solid var(--report-soft-border);
}

.report-section h3 {
  font-size: 17px;
  color: var(--report-text);
  margin: 20px 0 9px;
}

.report-section h4 {
  font-size: 16px;
  color: var(--report-secondary);
  margin: 18px 0 8px;
}

.report-section p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.82;
  text-align: left;
}

.report-section > p,
.report-section > ul,
.report-section > ol,
.report-section > blockquote,
.report-section > h3,
.report-section > h4,
.report-section > .section-label {
  max-width: 820px;
}

.report-section strong,
.report-card strong,
.stock-card strong,
.summary-list strong {
  color: var(--report-highlight);
  font-weight: 800;
}

.report-section a {
  color: var(--color-accent);
}

.report-section a.button-link {
  color: var(--report-primary);
}

.report-section a.button-link:hover {
  color: #ffffff;
}

.report-section ul,
.report-section ol {
  padding-left: 22px;
  margin: 0 0 15px;
}

.report-section li {
  margin-bottom: 7px;
  line-height: 1.78;
}

.report-section blockquote {
  margin: 14px 0;
  padding: 12px 15px;
  border-left: 4px solid var(--report-accent);
  border-radius: 10px;
  background: var(--color-accent-soft);
  color: var(--color-brand);
}

.report-section code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--color-neutral-soft);
  color: var(--color-brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.key-takeaways {
  border-color: #d7e4ff;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.takeaway-list {
  display: grid;
  gap: 14px;
}

.takeaway-item {
  padding: 13px 14px;
  border-radius: 10px;
  background: var(--color-soft-bg);
  border: 1px solid var(--report-border);
}

.takeaway-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--report-primary);
}

.risk-section {
  border-color: #fecaca;
}

.risk-list li::marker {
  color: var(--report-danger);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scenario-card {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--report-border);
  background: var(--color-card-header);
}

.scenario-card h3 {
  margin-top: 0;
}

.bull-case {
  border-color: #ccefd9;
  background: var(--color-positive-soft);
}

.base-case {
  border-color: #d7e4ff;
  background: #f8fbff;
}

.bear-case {
  border-color: #fecaca;
  background: var(--color-negative-soft);
}

.report-table-wrap {
  width: 100%;
  overflow-x: visible;
  margin: 16px 0;
  border: 1px solid var(--report-border);
  border-radius: 10px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  background: var(--color-card);
}

.report-table th {
  padding: 10px 12px;
  background: var(--color-card-header);
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--report-soft-border);
  overflow-wrap: anywhere;
  white-space: normal;
}

.report-table td {
  padding: 11px 12px;
  color: var(--color-text);
  border-bottom: 1px solid #f1f3f8;
  vertical-align: top;
  font-size: 13.5px;
  line-height: 1.62;
  overflow-wrap: anywhere;
  white-space: normal;
}

.report-table tr:last-child td {
  border-bottom: 0;
}

.source-list {
  font-size: 14px;
  color: var(--color-text);
}

.report-disclaimer {
  background: var(--color-soft-bg);
  color: var(--report-muted);
  font-size: 14px;
}

.report-disclaimer h2 {
  color: #475569;
}

.home-page {
  width: min(calc(100% - 48px), 1180px);
  padding-top: 30px;
  overflow-x: hidden;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: stretch;
  min-height: 480px;
  margin-bottom: 32px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #07172f;
  box-shadow: 0 18px 42px rgba(15, 42, 95, 0.16);
  color: #ffffff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 47, 0.96) 0%, rgba(9, 26, 58, 0.76) 46%, rgba(9, 26, 58, 0.18) 100%);
  z-index: 1;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.home-hero .report-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.home-hero .site-title {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.14;
}

.home-hero .site-subtitle {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.86;
}

.home-hero .site-title,
.home-hero .site-subtitle {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
  max-width: 100%;
  min-width: 0;
}

.home-signal-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  white-space: normal;
}

.home-hero-visual {
  position: relative;
  z-index: 0;
  min-height: 400px;
  margin: -38px -38px -38px 0;
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center right;
}

.home-section {
  margin-bottom: 30px;
}

.section-heading {
  display: grid;
  gap: 7px;
  max-width: 780px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--report-primary);
  font-size: 25px;
  line-height: 1.35;
}

.section-heading p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

.section-eyebrow {
  color: var(--report-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.thesis-card,
.map-card,
.discipline-grid {
  border: 1px solid var(--report-border);
  border-radius: 14px;
  background: var(--report-card);
  box-shadow: var(--report-shadow-soft);
}

.thesis-card {
  padding: 18px;
}

.thesis-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--report-primary);
  background: var(--color-brand-soft);
  font-size: 13px;
  font-weight: 850;
}

.thesis-card h3 {
  margin: 0 0 8px;
  color: var(--report-primary);
  font-size: 17px;
  line-height: 1.4;
}

.thesis-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 14.5px;
  line-height: 1.75;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.map-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.map-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--report-accent);
  font-size: 12px;
  font-weight: 850;
}

.map-card h3 {
  margin: 0 0 8px;
  color: var(--report-primary);
  font-size: 17px;
  line-height: 1.4;
}

.map-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 14.5px;
  line-height: 1.75;
}

.compact-heading {
  margin-bottom: 14px;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.discipline-grid div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-right: 1px solid var(--report-soft-border);
}

.discipline-grid div:last-child {
  border-right: 0;
}

.discipline-grid strong {
  color: var(--report-primary);
}

.discipline-grid span {
  color: var(--color-text);
  font-size: 14.5px;
  line-height: 1.7;
}

.site-section {
  margin-bottom: 26px;
}

.site-section h2 {
  font-size: 24px;
  color: var(--report-primary);
  margin: 0 0 16px;
}

.report-card,
.stock-card {
  border: 1px solid var(--report-border);
  border-radius: 14px;
  background: var(--report-card);
  box-shadow: var(--report-shadow-soft);
}

.report-card {
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.report-card h3,
.stock-card h3 {
  color: var(--report-primary);
  margin: 0 0 8px;
}

.label {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #bfeaf0;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--report-accent);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.meta {
  color: var(--report-muted);
  font-size: 14px;
  margin: 0 0 12px;
}

.summary-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.summary-list li {
  margin-bottom: 8px;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stock-card {
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stock-card p {
  margin: 0;
  color: var(--color-text);
}

.stock-card .button-link {
  align-self: flex-start;
  margin-top: auto;
}

.symbol {
  color: var(--report-primary);
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
}

.stock-name {
  color: var(--report-primary);
  font-weight: 800;
}

.directory-link {
  margin: 18px 0 0;
}

.directory-section h2 {
  margin-bottom: 8px;
}

.directory-intro {
  color: var(--report-muted);
  margin: 0 0 18px;
}

.directory-table .symbol {
  font-size: 18px;
}

.directory-table .button-link {
  white-space: nowrap;
}

.weekly-report-page .report-section h3 {
  color: var(--report-primary);
  font-size: 19px;
}

.weekly-report-page .section-label {
  margin: 16px 0 8px;
  color: var(--report-secondary);
}

.weekly-report-page strong {
  color: var(--report-highlight);
}

@media (max-width: 1100px) {
  .site-nav,
  .site-page,
  .stock-report-page {
    width: calc(100% - 40px);
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    padding: 34px;
  }

  .home-hero-visual {
    margin: -34px -34px -34px 0;
  }

  .thesis-grid,
  .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav,
  .site-page,
  .stock-report-page {
    width: calc(100% - 32px);
  }

  .report-table-wrap {
    overflow-x: auto;
  }

  .source-table-wrap {
    overflow-x: auto;
  }

  .source-table-wrap table {
    min-width: 760px;
  }

  .report-table {
    min-width: 760px;
  }

  .weekly-report-page .report-table,
  .directory-table {
    min-width: 900px;
  }

  .report-summary-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 30px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 23, 47, 0.2) 0%, rgba(7, 23, 47, 0.84) 42%, rgba(7, 23, 47, 0.97) 100%);
  }

  .home-hero-copy {
    max-width: none;
    padding-top: 22px;
  }

  .home-hero .site-title {
    max-width: none;
    font-size: 38px;
  }

  .home-hero-visual {
    order: -1;
    min-height: 260px;
    margin: -30px 0 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .home-hero-visual img {
    min-height: 260px;
    max-height: 320px;
    object-position: center;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .stock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-header {
    display: block;
  }

  .label {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    top: 8px;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .nav-brand {
    justify-content: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav .nav-link {
    text-align: center;
    padding: 8px 9px;
  }

  .site-page,
  .stock-report-page {
    width: calc(100% - 24px);
    padding: 20px 0 44px;
  }

  .site-hero,
  .report-hero {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .site-title,
  .report-title {
    font-size: 26px;
  }

  .home-hero {
    padding: 22px;
    border-radius: 14px;
  }

  .home-hero-copy {
    padding-top: 18px;
  }

  .home-hero .site-title {
    font-size: 32px;
  }

  .home-hero .site-subtitle {
    font-size: 16px;
  }

  .home-signal-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-signal-row span {
    text-align: center;
    overflow-wrap: anywhere;
  }

  .home-hero-visual {
    min-height: 210px;
    margin: -22px 0 0;
  }

  .home-hero-visual img {
    min-height: 210px;
    max-height: 240px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .thesis-grid,
  .map-grid,
  .discipline-grid {
    grid-template-columns: 1fr;
  }

  .discipline-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--report-soft-border);
  }

  .discipline-grid div:last-child {
    border-bottom: 0;
  }

  .report-summary-card {
    grid-template-columns: 1fr;
  }

  .report-section {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .source-report {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .source-report > h1:first-child {
    font-size: 27px;
  }

  .stock-grid {
    grid-template-columns: 1fr;
  }
}
