
:root {
  --navy: #0b1f33;
  --navy-soft: #17324d;
  --gold: #a57d3e;
  --gold-soft: #d6c09a;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --surface-muted: #eaf0f4;
  --text: #17212b;
  --muted: #5d6975;
  --line: #d8e0e6;
  --success: #23654b;
  --warning: #8a641c;
  --danger: #8a3e35;
  color: var(--text);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-links > a:hover { color: var(--navy); }
.nav-links .nav-cta {
  padding: 10px 16px;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 3px;
}
.hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(165, 125, 62, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--navy) 0%, #102b43 100%);
}
.hero-content { padding-block: 88px 104px; }
.hero-copy { max-width: 980px; }
.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-soft); }
.pilot,
.confidence {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero h1,
.report-hero h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}
.lede {
  max-width: 780px;
  margin: 26px 0 0;
  color: #d5dee6;
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  color: #becbd5;
  font-size: 0.88rem;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--navy);
  background: #fff;
  border-radius: 3px;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: #edf2f5; }
.market-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -32px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.09);
}
.market-summary article { min-height: 154px; padding: 30px 34px; }
.market-summary article + article { border-left: 1px solid var(--line); }
.market-summary span,
.market-summary small {
  display: block;
  color: var(--muted);
}
.market-summary span {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.market-summary strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 500;
}
.market-summary small { font-size: 0.86rem; }
.method-section { padding: 104px 0 92px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 36px;
}
.section-heading h2 {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.principles article {
  min-height: 250px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.principles article > span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.principles h3 {
  margin: 48px 0 14px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 600;
}
.principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.reports { padding: 12px 0 104px; }
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.report-grid:empty { display: none; }
.report-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.report-card:hover {
  border-color: #b4c0ca;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
  transform: translateY(-2px);
}
.report-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}
.report-card h3 {
  margin: 38px 0;
  color: var(--navy);
  font-size: 1.9rem;
}
.report-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.report-card dt { color: var(--muted); font-size: 0.74rem; }
.report-card dd { margin: 6px 0 0; color: var(--navy); font-weight: 750; }
.card-link { display: block; margin-top: 28px; color: var(--navy); font-weight: 750; }
.confidence.high { color: var(--success); }
.confidence.medium { color: var(--warning); }
.confidence.low,
.confidence.insufficient { color: var(--danger); }
.empty-state {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  max-width: 820px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}
.status-mark {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.empty-state h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 1.45rem;
}
.empty-state p:last-child { margin: 0; color: var(--muted); line-height: 1.6; }
.report-hero {
  padding-bottom: 58px;
  background: var(--surface);
}
.report-hero nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.report-hero nav > a:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}
.breadcrumb { margin: 52px 0 0; color: var(--muted); font-size: 0.85rem; }
.report-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.report-hero h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}
.confidence.large { margin-bottom: 16px; }
.report-hero .lede { color: var(--muted); }
.report-main { padding-bottom: 96px; }
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: var(--navy);
}
.kpis article { padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.kpis article:last-child { border-right: 0; }
.kpis span,
.kpis small { display: block; color: #bcc9d3; }
.kpis strong {
  display: block;
  margin: 18px 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}
.split-section h2,
.context h2,
.methodology h2 { color: var(--navy); }
.split-section p { color: var(--muted); line-height: 1.65; }
.range-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.range-card strong { text-align: right; }
.range-line {
  grid-column: 1 / -1;
  height: 5px;
  margin: 20px 0;
  background: linear-gradient(90deg, var(--navy-soft), var(--gold));
}
.context { padding: 88px 0; }
.context-grid,
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.context-grid div,
.method-grid p {
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.context-grid dt { color: var(--muted); }
.context-grid dd {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.methodology { padding: 48px; background: var(--surface-muted); }
.notice {
  margin-bottom: 0;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  line-height: 1.65;
}
footer { padding: 46px 0; color: #fff; background: var(--navy); }
footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
footer .brand { color: #fff; }
footer p { margin: 0; color: #b8c5cf; }
@media (max-width: 860px) {
  .hero-content { padding-block: 70px 88px; }
  .market-summary,
  .principles { grid-template-columns: 1fr; }
  .market-summary article + article { border-left: 0; border-top: 1px solid var(--line); }
  .market-summary article { min-height: 0; }
  .report-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading,
  .split-section { align-items: start; grid-template-columns: 1fr; }
  .section-heading { display: grid; gap: 18px; }
  .kpis,
  .context-grid,
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .report-title { display: block; }
  .confidence.large { margin-top: 22px; }
}
@media (max-width: 580px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-nav { min-height: 68px; }
  .nav-links > a:first-child { display: none; }
  .nav-links { gap: 12px; }
  .nav-links .nav-cta { padding: 8px 11px; font-size: 0.8rem; }
  .hero-content { padding-block: 58px 76px; }
  .hero-kicker { align-items: flex-start; flex-direction: column; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .market-summary { margin-top: -22px; }
  .method-section { padding: 78px 0 66px; }
  .principles article { min-height: 0; padding: 28px; }
  .principles h3 { margin-top: 30px; }
  .reports { padding-bottom: 78px; }
  .report-grid,
  .kpis,
  .context-grid,
  .method-grid { grid-template-columns: 1fr; }
  .empty-state { grid-template-columns: 1fr; padding: 28px; }
  .report-hero { padding-bottom: 42px; }
  .report-hero nav { min-height: 68px; }
  .report-hero h1 { font-size: 3rem; }
  .split-section,
  .context { padding: 68px 0; }
  .methodology { padding: 30px; }
  footer .shell { align-items: flex-start; flex-direction: column; }
}
