:root {
  color-scheme: light;
  --canvas: #f6f8fc;
  --surface: #ffffff;
  --surface-strong: #eef3fa;
  --ink: #13213a;
  --ink-soft: #61708a;
  --line: #dbe3ef;
  --accent: #1769e0;
  --accent-strong: #0d4fb8;
  --accent-wash: #e9f2ff;
  --chart-muted: #9aabc1;
  --focus: #1769e0;
  --font-display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1220px, calc(100vw - 48px));
  --radius: 22px;
  --nav-height: 78px;
  --shadow: 0 24px 70px rgba(35, 70, 125, 0.12);
  --shadow-soft: 0 12px 36px rgba(35, 70, 125, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 5%, rgba(23, 105, 224, 0.08), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--canvas);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(219, 227, 239, 0.88);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 24px rgba(35, 70, 125, 0.04);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand::before {
  content: "LH";
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 18px rgba(19, 33, 58, 0.15);
}

.brand:hover {
  color: var(--ink);
}

.brand strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand span {
  display: none;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f5f7fb;
  list-style: none;
}

.primary-nav a {
  color: var(--ink-soft);
  display: block;
  padding: 8px 11px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(35, 70, 125, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta,
.menu-button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-button {
  display: none;
  padding: 0 14px;
}

.nav-cta:hover,
.menu-button:hover {
  background: var(--accent-strong);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 105, 224, 0.24);
}

.nav-cta:active,
.menu-button:active,
.button:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
  margin-top: 30px;
  padding: clamp(54px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(23, 105, 224, 0.14), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f4f8fe 100%);
  box-shadow: var(--shadow-soft);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -260px;
  border: 68px solid rgba(23, 105, 224, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(38px, 3.8vw, 52px);
  line-height: 1.06;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.16;
}

.hero-deck {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.52;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(23, 105, 224, 0.2);
}

.button-primary:hover {
  background: var(--accent-strong);
  color: #ffffff;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(35, 70, 125, 0.05);
}

.button-secondary:hover {
  border-color: #bdcbe0;
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.hero-note span {
  color: #27a875;
  font-size: 10px;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 33, 58, 0.02) 35%, rgba(19, 33, 58, 0.42));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-dashboard {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 40px rgba(19, 33, 58, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.dashboard-heading,
.dashboard-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-heading {
  margin-bottom: 16px;
}

.dashboard-heading > div {
  display: grid;
  gap: 2px;
}

.dashboard-heading span,
.dashboard-metrics span,
.dashboard-metrics em {
  color: var(--ink-soft);
  font-size: 10px;
  font-style: normal;
}

.dashboard-heading strong {
  font-size: 15px;
}

.update-status {
  padding: 5px 8px;
  border-radius: 7px;
  background: #e5f7ef;
  color: #167653 !important;
  font-weight: 800;
}

.dashboard-metrics {
  align-items: stretch;
}

.dashboard-metrics div {
  flex: 1;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.dashboard-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.dashboard-metrics strong,
.dashboard-metrics span,
.dashboard-metrics em {
  display: block;
}

.dashboard-metrics strong {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: -0.06em;
}

.dashboard-metrics em {
  margin-top: 6px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.market-rail {
  position: relative;
  z-index: 4;
  margin-top: -28px;
  background: transparent;
}

.market-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.market-intro,
.market-stat {
  min-height: 132px;
  padding: 24px;
}

.market-intro {
  padding-left: 24px;
  background: var(--ink);
}

.market-stat {
  border-left: 1px solid var(--line);
}

.market-intro p,
.market-stat p {
  margin: 0;
}

.market-intro strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.08;
}

.market-intro span,
.market-stat span {
  color: var(--ink-soft);
  font-size: 12px;
}

.market-intro span {
  color: #b8c4d8;
}

.market-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.market-stat em {
  display: block;
  margin-top: 9px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.section {
  padding-block: clamp(68px, 8vw, 104px);
}

.section-compact {
  padding-block: clamp(52px, 6vw, 82px);
}

.start-section {
  padding-block: clamp(52px, 6vw, 76px) 10px;
}

.start-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 26px;
}

.start-heading h2,
.start-heading p {
  margin-bottom: 0;
}

.start-heading p:last-child {
  max-width: 630px;
  color: var(--ink-soft);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.start-path {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.start-path:last-child {
  border-right: 0;
}

.start-path:hover {
  background: var(--accent-wash);
  color: var(--ink);
}

.start-path span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-path strong {
  max-width: 220px;
  font-size: 19px;
  line-height: 1.28;
}

.start-path em {
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 46px;
  align-items: start;
}

.feature-story {
  display: grid;
  gap: 20px;
  padding: 12px 12px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-story .story-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.feature-story > div:last-child {
  padding: 0 12px;
}

.feature-story img,
.article-image img,
.story-row img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-story:hover img,
.story-row:hover img {
  transform: scale(1.018);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
}

.story-meta .category {
  color: var(--accent);
  font-weight: 800;
}

.feature-story h3 {
  max-width: 760px;
  font-size: clamp(26px, 2.6vw, 34px);
}

.feature-story h3 a,
.story-row h3 a {
  text-decoration: none;
}

.feature-story p,
.story-row p {
  margin: 0;
  color: var(--ink-soft);
}

.story-stack {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.story-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.story-row .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.story-row h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.story-row p {
  font-size: 14px;
  line-height: 1.5;
}

.report-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.report-copy {
  position: static;
}

.report-copy p {
  color: var(--ink-soft);
}

.report-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.signal {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafe;
}

.signal-wide {
  grid-column: 1 / -1;
  min-height: 270px;
  background: linear-gradient(145deg, var(--accent-wash), #f6faff);
}

.signal strong {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.signal span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
  margin-top: 34px;
}

.mini-chart i {
  flex: 1;
  min-width: 8px;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: var(--chart-muted);
}

.mini-chart i:last-child {
  background: var(--accent);
}

.topic-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.topic {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.topic:first-child {
  grid-row: span 2;
  min-height: 580px;
}

.topic:nth-child(4) {
  grid-column: 2 / -1;
}

.topic img {
  height: 100%;
  object-fit: cover;
}

.topic-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 22, 19, 0.88), rgba(14, 22, 19, 0.02) 70%);
}

.topic-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #f5f7f2;
}

.topic-copy h3 {
  margin-bottom: 8px;
}

.topic-copy a {
  color: inherit;
  text-decoration: none;
}

.topic-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--surface);
}

.topic-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent-strong);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.72fr);
  gap: 60px;
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid #cdddf4;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(23, 105, 224, 0.14), transparent 18rem),
    var(--accent-wash);
  box-shadow: var(--shadow-soft);
}

.newsletter h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.newsletter p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

.signup-form input::placeholder {
  color: var(--ink-soft);
  opacity: 0.86;
}

.form-note,
.form-status {
  min-height: 21px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status[data-state="success"] {
  color: #167653;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9f2e25;
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 56px;
  margin-top: 30px;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 18%, rgba(23, 105, 224, 0.12), transparent 19rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  font-size: clamp(36px, 4vw, 50px);
}

.page-hero .deck {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.blog-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-group {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.blog-group h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.blog-group > p {
  min-height: 68px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.blog-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.blog-list li {
  border-bottom: 1px solid var(--line);
}

.blog-list a {
  display: grid;
  gap: 3px;
  padding-block: 15px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.blog-list a:hover {
  color: var(--accent);
}

.blog-list span {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-group .text-link {
  margin-top: 20px;
}

.page-aside {
  align-self: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafe;
  color: var(--ink-soft);
  font-size: 14px;
}

.page-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.archive-card {
  grid-column: span 4;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.archive-card:first-child {
  grid-column: span 8;
  min-height: 360px;
  background: linear-gradient(145deg, var(--accent-wash), #f8fbff);
}

.archive-card h2,
.archive-card h3 {
  margin: 0;
}

.archive-card a {
  text-decoration: none;
}

.archive-card .month {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.archive-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.archive-card[data-status="planned"] {
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.article-header {
  margin-top: 30px;
  padding: clamp(40px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 105, 224, 0.1), transparent 23rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 12px;
}

.breadcrumbs a {
  text-decoration: none;
}

.article-header h1 {
  max-width: 960px;
  font-size: clamp(36px, 4.3vw, 52px);
  line-height: 1.06;
}

.article-deck {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.48;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 44px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
}

.article-image {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 0.75fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 13px;
}

.article-sidebar strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}

.article-sidebar ul {
  margin: 0;
  padding-left: 18px;
}

.article-sidebar li + li {
  margin-top: 8px;
}

.prose {
  max-width: 860px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.prose > p:first-child {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.prose h2 {
  margin-top: 64px;
  font-size: clamp(25px, 2.4vw, 32px);
}

.prose h3 {
  margin-top: 42px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--accent-strong);
}

.prose blockquote {
  margin: 48px 0;
  padding: 22px 0 22px 28px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.35;
}

.prose blockquote p {
  margin: 0;
  color: inherit;
}

.prose .callout {
  margin-block: 44px;
  padding: 26px;
  border: 1px solid #cdddf4;
  border-radius: 16px;
  background: var(--accent-wash);
}

.prose .callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.metric-block {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-block: 28px 0;
}

.metric-block div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.metric-block div:first-child {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.metric-block strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--accent-strong);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric-block span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.source-list {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.source-list h2 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
}

.source-list ol {
  padding-left: 18px;
}

.source-list li + li {
  margin-top: 10px;
}

.hub-prose {
  max-width: none;
}

.stage-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  counter-reset: pipeline-stage;
}

.stage-list li {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 18px 16px 52px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8fafe;
  counter-increment: pipeline-stage;
}

.stage-list li::before {
  content: counter(pipeline-stage, decimal-leading-zero);
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.stage-list strong {
  color: var(--ink);
}

.stage-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

.tracker-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-tracker {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  text-align: left;
}

.project-tracker th,
.project-tracker td {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.project-tracker thead th {
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-tracker tbody tr:last-child th,
.project-tracker tbody tr:last-child td {
  border-bottom: 0;
}

.project-tracker tbody tr:hover {
  background: #f8fafe;
}

.project-tracker tbody th {
  width: 24%;
  color: var(--ink);
  font-size: 15px;
}

.project-tracker tbody th a {
  color: var(--ink);
  text-decoration: none;
}

.project-tracker tbody th a:hover {
  color: var(--accent);
}

.project-tracker tbody th span:not(.status-badge) {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
}

.project-tracker td {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.status-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--accent-wash);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.status-design {
  background: #e5f7ef;
  color: #167653;
}

.status-funded,
.status-created {
  background: #fff2d9;
  color: #845914;
}

.status-phased {
  background: #f0eaff;
  color: #6540a8;
}

.tracker-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 10px;
}

.source-desk {
  align-items: stretch;
}

.source-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.source-link-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafe;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.source-link-grid a:hover {
  transform: translateY(-2px);
  border-color: #bdcbe0;
  box-shadow: var(--shadow-soft);
}

.source-link-grid strong {
  font-size: 18px;
}

.source-link-grid span {
  color: var(--ink-soft);
  font-size: 12px;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.principle {
  min-height: 210px;
  padding: 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.principle strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.series-principles {
  margin-block: 36px;
}

.series-principles .principle {
  min-height: 230px;
}

.series-principles .principle span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 56px;
  padding-block: 52px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.footer-grid p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

.footer-links a {
  display: block;
  width: fit-content;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a + a {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px 30px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .primary-nav[data-open="true"] {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .primary-nav a {
    padding: 11px 12px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero,
  .lead-grid,
  .report-feature,
  .newsletter,
  .page-hero,
  .start-heading,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 48px;
  }

  .hero-media,
  .hero-media img {
    min-height: 480px;
  }

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

  .market-intro {
    grid-column: 1 / -1;
    padding-left: 24px;
  }

  .market-stat:nth-child(odd) {
    border-left: 0;
  }

  .market-stat {
    border-top: 1px solid var(--line);
  }

  .story-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
  }

  .story-row {
    grid-template-columns: 1fr;
    padding: 0 0 18px;
    border-bottom: 0;
  }

  .story-row .thumb {
    aspect-ratio: 16 / 9;
  }

  .report-copy,
  .article-sidebar {
    position: static;
  }

  .topic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .topic:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .topic:nth-child(4) {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    padding: 20px;
    border-radius: 16px;
    background: var(--surface);
  }

  .metric-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-block div,
  .metric-block div:first-child {
    padding: 20px;
    border: 1px solid var(--line);
  }

  .metric-block div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .archive-card,
  .archive-card:first-child {
    grid-column: span 6;
  }

  .start-grid,
  .blog-directory {
    grid-template-columns: 1fr 1fr;
  }

  .start-path:nth-child(2) {
    border-right: 0;
  }

  .start-path:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .stage-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100vw - 28px);
    --nav-height: 64px;
  }

  body {
    font-size: 16px;
  }

  .site-header,
  .nav-wrap {
    min-height: var(--nav-height);
  }

  .brand strong {
    font-size: 18px;
  }

  .brand::before {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  h1,
  .page-hero h1,
  .article-header h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    margin-top: 14px;
    padding: 34px 20px 20px;
    border-radius: 24px;
  }

  .hero-deck {
    font-size: 18px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .hero-media {
    border-radius: 20px;
  }

  .hero-dashboard {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
    border-radius: 15px;
  }

  .dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .dashboard-metrics div {
    padding-left: 8px;
  }

  .dashboard-metrics strong {
    font-size: 18px;
  }

  .dashboard-metrics em {
    display: none;
  }

  .market-grid,
  .report-visual,
  .story-stack,
  .topic-grid,
  .principles,
  .source-link-grid,
  .input-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .market-intro,
  .market-stat {
    grid-column: auto;
    min-height: auto;
    padding: 22px 14px;
    border-left: 0;
  }

  .market-intro {
    grid-column: 1;
  }

  .market-stat {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 12px;
  }

  .market-stat em {
    text-align: right;
  }

  .feature-story h3 {
    font-size: 26px;
  }

  .story-row {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .story-row .thumb {
    aspect-ratio: 1 / 1;
  }

  .story-row p {
    display: none;
  }

  .topic,
  .topic:first-child,
  .topic:nth-child(4) {
    grid-column: auto;
    min-height: 330px;
  }

  .topic-text {
    min-height: 260px;
  }

  .newsletter {
    gap: 34px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .page-hero {
    gap: 28px;
    margin-top: 14px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .page-aside {
    padding: 18px;
    border: 1px solid var(--line);
  }

  .archive-card,
  .archive-card:first-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .start-grid,
  .blog-directory {
    grid-template-columns: 1fr;
  }

  .start-path,
  .start-path:nth-child(2) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .start-path:last-child {
    border-bottom: 0;
  }

  .blog-group > p {
    min-height: 0;
  }

  .article-image {
    aspect-ratio: 4 / 3;
  }

  .article-sidebar {
    display: none;
  }

  .article-header {
    margin-top: 14px;
    padding: 34px 20px 20px;
    border-radius: 24px;
  }

  .prose {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .prose > p:first-child {
    font-size: 19px;
  }

  .metric-block {
    grid-template-columns: 1fr;
  }

  .metric-block div,
  .metric-block div:first-child,
  .metric-block div:nth-child(odd) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    border: 1px solid var(--line);
  }

  .metric-block span {
    text-align: right;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
