:root {
  --ink: #151818;
  --muted: #66706b;
  --line: #d8dfda;
  --paper: #f7f8f3;
  --panel: #ffffff;
  --soft: #edf3ef;
  --accent: #1a6f62;
  --accent-strong: #0f4d45;
  --gold: #c98b2c;
  --blue: #2d6f92;
  --red: #a84f48;
  --shadow: 0 28px 80px rgba(21, 24, 24, 0.14);
  --shadow-soft: 0 18px 42px rgba(21, 24, 24, 0.08);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(216, 223, 218, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 223, 218, 0.18) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(26, 111, 98, 0.34);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 28px;
  background: rgba(247, 248, 243, 0.94);
  border-bottom: 1px solid rgba(216, 223, 218, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--ink);
  color: var(--panel);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  transition:
    filter 180ms ease-in-out,
    transform 180ms var(--ease-emphasis);
}

.brand-avatar {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: var(--ink);
  object-fit: cover;
  transition:
    filter 180ms ease-in-out,
    transform 180ms var(--ease-emphasis);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.18;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.site-footer a,
.text-link,
.button,
.article-card,
.topic-card,
.featured-note-card,
.filter-button,
.journey-step,
.archive-identity-card,
.stack-layer {
  transition:
    color 120ms ease-out,
    border-color 180ms ease-in-out,
    background-color 180ms ease-in-out,
    filter 180ms ease-in-out,
    opacity 180ms ease-in-out,
    transform 180ms var(--ease-emphasis);
}

.brand:hover .brand-mark,
.brand:hover .brand-avatar,
.brand:focus-visible .brand-mark,
.brand:focus-visible .brand-avatar {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover,
.site-footer a:hover,
.text-link:hover,
.nav a:focus-visible,
.site-footer a:focus-visible,
.text-link:focus-visible {
  color: var(--accent-strong);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 72px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  min-height: min(78dvh, 760px);
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--panel);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 23, 0.92), rgba(17, 24, 23, 0.72) 52%, rgba(17, 24, 23, 0.38)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 88%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 820px;
  padding: 86px 56px 118px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
  text-wrap: balance;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  text-wrap: pretty;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

.hero-lede .lede-line,
.page-hero .lede-line,
.hero-desk > strong span {
  display: block;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 12px;
  width: min(100%, 680px);
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 10px 17px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.2;
}

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

.button:focus-visible {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button.primary {
  border-color: var(--panel);
  background: var(--panel);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--panel);
}

.button.ghost:hover {
  border-color: var(--panel);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--panel);
}

.button.inverse-safe {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--panel);
}

.hero-desk {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
  margin: 56px 56px 118px 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 24, 23, 0.76);
  color: var(--panel);
}

.hero-profile {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.hero-profile img {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  object-fit: cover;
}

.hero-profile span,
.hero-profile strong,
.hero-profile small {
  display: block;
}

.hero-profile span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-profile strong {
  padding: 0;
  color: var(--panel);
  font-size: 19px;
  line-height: 1.2;
}

.hero-profile small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.desk-label {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-desk > strong {
  display: block;
  padding: 20px 18px 10px;
  font-size: 22px;
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

.signal-board {
  margin: 0;
  padding: 8px 18px 18px;
}

.signal-board div {
  display: grid;
  grid-template-columns: minmax(112px, 0.78fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-board dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-board dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 760;
}

.infra-stack {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 18px 20px;
  list-style: none;
  perspective: 720px;
}

.stack-layer {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  opacity: 0.88;
  transform: translate3d(0, 0, 0);
}

.stack-layer:nth-child(2) {
  opacity: 0.84;
  transform: translate3d(8px, -1px, 0);
}

.stack-layer:nth-child(3) {
  opacity: 0.8;
  transform: translate3d(16px, -2px, 0);
}

.stack-layer:nth-child(4) {
  opacity: 0.76;
  transform: translate3d(24px, -3px, 0);
}

.stack-layer span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.stack-layer strong,
.stack-layer small {
  display: block;
}

.stack-layer strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.2;
}

.stack-layer small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.hero-desk:hover .stack-layer,
.hero-desk:focus-within .stack-layer {
  filter: brightness(1.08);
  opacity: 0.96;
}

.hero-desk:hover .stack-layer:nth-child(2),
.hero-desk:focus-within .stack-layer:nth-child(2) {
  transform: translate3d(10px, -2px, 0);
}

.hero-desk:hover .stack-layer:nth-child(3),
.hero-desk:focus-within .stack-layer:nth-child(3) {
  transform: translate3d(18px, -3px, 0);
}

.hero-desk:hover .stack-layer:nth-child(4),
.hero-desk:focus-within .stack-layer:nth-child(4) {
  transform: translate3d(26px, -4px, 0);
}

.market-strip {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 24, 23, 0.76);
}

.market-strip span {
  min-height: 62px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: 34px;
  align-items: stretch;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.journey-intro {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 100%;
}

.journey-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
}

.journey-intro p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.journey-steps {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  background: var(--panel);
}

.journey-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.journey-step:last-child {
  border-bottom: 0;
}

.journey-step:hover,
.journey-step:focus-within {
  background: var(--soft);
}

.journey-step span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.journey-step strong {
  font-size: 19px;
  line-height: 1.24;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.76fr);
  gap: 40px;
  align-items: stretch;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.brief h2,
.section-heading h2,
.author-band h2,
.monetization-band h2,
.archive-cta h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
  line-break: strict;
}

.brief p,
.section-heading p,
.article-card p,
.featured-note-card p,
.author-band p,
.monetization-band p,
.content-page p,
.content-page li,
.page-hero p,
.archive-cta p {
  color: var(--muted);
}

.featured-note-slot {
  min-width: 0;
}

.featured-note-card {
  display: grid;
  min-height: 100%;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.featured-note-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.14;
  text-wrap: balance;
}

.featured-note-card p {
  margin: 0;
}

.section {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  min-width: 0;
  margin-bottom: 26px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading.split > p {
  max-width: 420px;
  margin: 0 0 4px;
}

.watchlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.watchlist-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

.watchlist-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.watchlist-table caption {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.watchlist-table th,
.watchlist-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.watchlist-table th {
  color: var(--ink);
  font-weight: 850;
}

.watchlist-table thead th {
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.watchlist-table td {
  color: var(--muted);
}

.watchlist-table tr:last-child th,
.watchlist-table tr:last-child td {
  border-bottom: 0;
}

.capital-flow-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--panel);
}

.capital-flow-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
  text-wrap: balance;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
}

.flow-list span {
  color: var(--gold);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.topic-card {
  min-height: 236px;
  padding: 24px;
  background: var(--panel);
}

.topic-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.topic-card:focus-within {
  border-color: var(--accent);
  filter: brightness(1.01);
  transform: translateY(-2px);
}

.lane-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.topic-card::before {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--gold);
  content: "";
}

.topic-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  text-wrap: balance;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.article-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-card:hover,
.article-card:focus-within {
  border-color: rgba(26, 111, 98, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.featured-note-card:hover,
.featured-note-card:focus-within {
  border-color: rgba(26, 111, 98, 0.48);
  filter: brightness(1.01);
  transform: translateY(-1px);
}

.article-card.featured {
  grid-row: span 2;
  min-height: 100%;
  padding: 34px;
  background: var(--ink);
  color: var(--panel);
}

.article-card.featured p,
.article-card.featured .article-meta {
  color: rgba(255, 255, 255, 0.74);
}

.article-card.featured .pill {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--panel);
}

.article-card.featured h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 2px 8px;
  background: var(--soft);
  color: var(--accent-strong);
  font-weight: 850;
}

.article-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: 0;
  line-height: 1.24;
  text-wrap: balance;
}

.article-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.loading-card,
.empty-state {
  align-content: center;
  min-height: 144px;
  color: var(--muted);
}

.ad-slot {
  display: grid;
  min-height: 92px;
  place-items: center;
  margin: 18px 0 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.monetization-band,
.reader-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  padding: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(237, 243, 239, 0.96), rgba(255, 255, 255, 0.88));
}

.monetization-band p,
.reader-cta p,
.related-notes p {
  margin: 0;
}

.monetization-actions,
.reader-cta .cta-actions,
.related-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.monetization-actions {
  justify-content: end;
}

.monetization-actions span {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.archive-subscribe {
  max-width: 1240px;
  margin: 0 auto 54px;
}

.reader-cta {
  grid-template-columns: minmax(0, 1fr);
  margin: 30px 0;
  background: var(--soft);
}

.reader-cta h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  line-break: strict;
}

.reader-cta > div {
  display: grid;
  gap: 12px;
}

.related-notes {
  justify-content: space-between;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-strong);
  font-weight: 900;
}

.text-link::after {
  margin-left: 4px;
  content: "->";
  transition: transform 120ms ease-out;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.author-band {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0 0;
}

.credibility-band {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.profile {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.archive-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.archive-cta .cta-actions {
  justify-content: end;
  margin-top: 0;
}

.archive-cta h2 {
  max-width: 800px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.page-hero {
  padding: 52px 0 28px;
}

.archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 32px;
  align-items: end;
  padding-top: 58px;
}

.archive-hero > * {
  min-width: 0;
}

.archive-identity-card {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.archive-identity-card:hover,
.archive-identity-card:focus-within {
  border-color: rgba(26, 111, 98, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.archive-identity-card img {
  width: 78px;
  height: 78px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.archive-identity-card strong {
  font-size: 21px;
  line-height: 1.2;
}

.archive-identity-card span {
  color: var(--muted);
  font-size: 14px;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

.content-page {
  max-width: 860px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.content-page h2 {
  margin-top: 32px;
  line-height: 1.25;
  letter-spacing: 0;
}

.content-page a {
  color: var(--accent-strong);
  font-weight: 800;
}

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

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  padding: 8px 12px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter-button:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.filter-button:focus-visible {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.filter-button:active {
  transform: translateY(1px) scale(0.99);
}

.filter-button.active {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--panel);
}

.post-body {
  max-width: 780px;
}

.post-body h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.callout {
  border-left: 4px solid var(--gold);
  background: rgba(201, 139, 44, 0.12);
  padding: 16px 18px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-desk {
    align-self: end;
    margin: 0 34px 34px;
  }

  .watchlist-layout,
  .archive-cta,
  .monetization-band,
  .journey-bridge,
  .archive-hero {
    grid-template-columns: 1fr;
  }

  .archive-cta .cta-actions,
  .monetization-actions {
    justify-content: start;
  }

  .monetization-actions span {
    text-align: left;
  }
}

@media (max-width: 960px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding: 78px 34px 56px;
  }

  .market-strip,
  .brief,
  .journey-steps,
  .author-band {
    grid-template-columns: 1fr;
  }

  .topic-grid,
  .post-grid,
  .editorial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .section .filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    width: calc(100vw - 56px);
    max-width: 100%;
  }

  .section .filter-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    position: static;
  }

  .brand small {
    font-size: 12px;
  }

  .nav,
  .site-footer nav {
    gap: 12px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 58px 22px 40px;
  }

  .hero-content > .eyebrow,
  .hero h1,
  .hero-lede,
  .hero-actions {
    max-width: calc(100vw - 76px);
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .filter-button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.68;
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-desk > strong {
    max-width: calc(100vw - 92px);
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-desk {
    margin: 0 22px 28px;
  }

  .signal-board div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .stack-layer,
  .stack-layer:nth-child(2),
  .stack-layer:nth-child(3),
  .stack-layer:nth-child(4),
  .hero-desk:hover .stack-layer,
  .hero-desk:focus-within .stack-layer {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .market-strip,
  .topic-grid,
  .post-grid,
  .editorial-list {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .article-card {
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

  .brief,
  .section,
  .journey-bridge {
    padding: 42px 0;
  }

  .featured-note-card,
  .capital-flow-card,
  .archive-identity-card,
  .archive-cta,
  .monetization-band,
  .reader-cta,
  .content-page {
    padding: 22px;
  }

  .journey-step {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .watchlist-table {
    min-width: 680px;
  }
}

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

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

  .button:hover,
  .button:focus-visible,
  .filter-button:hover,
  .filter-button:focus-visible,
  .article-card:hover,
  .article-card:focus-within,
  .featured-note-card:hover,
  .featured-note-card:focus-within,
  .topic-card:hover,
  .topic-card:focus-within,
  .brand:hover .brand-mark,
  .brand:hover .brand-avatar,
  .brand:focus-visible .brand-mark,
  .brand:focus-visible .brand-avatar,
  .text-link:hover::after,
  .text-link:focus-visible::after,
  .stack-layer,
  .stack-layer:nth-child(2),
  .stack-layer:nth-child(3),
  .stack-layer:nth-child(4),
  .hero-desk:hover .stack-layer,
  .hero-desk:focus-within .stack-layer {
    filter: none;
    opacity: 1;
    transform: none;
  }
}
