:root {
  color-scheme: dark;
  --bg: #050506;
  --ink: #f5f5f2;
  --muted: #a7a7a0;
  --soft: #cfcfc8;
  --faint: #666a66;
  --line: rgba(245, 245, 242, 0.13);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --teal: #42f2c8;
  --blue: #7ab6ff;
  --amber: #ffd166;
  --max: 1120px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.site {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.07), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 34px 34px, auto;
}

.wrap {
  width: calc(100% - 44px);
  max-width: var(--max);
  margin: 0 auto;
  min-width: 0;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: #000;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.links a {
  transition: color 160ms ease;
}

.links a:hover,
.links a:focus-visible,
.links .active {
  color: var(--ink);
}

.page-hero {
  padding: 152px 0 76px;
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 850;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(3.25rem, 9vw, 8rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-hero p {
  width: 100%;
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  overflow-wrap: break-word;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 32px;
  max-width: 100%;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

a.pill:hover,
a.pill:focus-visible {
  border-color: rgba(66, 242, 200, 0.52);
  color: var(--ink);
  background: rgba(66, 242, 200, 0.08);
}

.pill-teal {
  border-color: rgba(66, 242, 200, 0.38);
  color: var(--teal);
}

.section {
  padding: 84px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-tight {
  padding-top: 46px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

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

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

.article-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.source-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.source-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.source-card p {
  margin: 0 0 20px;
  color: var(--soft);
}

.publication-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.publication-cover,
.publication-detail {
  min-width: 0;
  padding: 30px;
  background: rgba(5, 5, 6, 0.94);
}

.publication-cover {
  display: grid;
  align-content: end;
  min-height: 420px;
  background:
    linear-gradient(150deg, rgba(66, 242, 200, 0.18), transparent 42%),
    linear-gradient(22deg, rgba(122, 182, 255, 0.16), transparent 50%),
    #070707;
}

.publication-cover span,
.publication-cover small {
  color: var(--muted);
  font-weight: 850;
}

.publication-cover strong {
  max-width: 360px;
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.publication-detail {
  display: grid;
  align-content: center;
}

.publication-detail h3 {
  margin: 8px 0 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.publication-detail p {
  color: var(--soft);
}

.publication-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.publication-status span {
  color: var(--muted);
  font-weight: 850;
}

.publication-status strong {
  color: var(--teal);
}

.publication-note {
  margin: 0;
}

.source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  margin-top: auto;
}

.source-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.source-actions a:hover,
.source-actions a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.feed-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.feed-status div {
  min-width: 0;
  padding: 18px;
  background: rgba(5, 5, 6, 0.94);
}

.feed-status span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.feed-status strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.latest-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.feeds-page .page-hero {
  padding: 126px 0 54px;
}

.links-page .page-hero {
  padding: 104px 0 30px;
}

.links-page .page-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.75rem, 5.4vw, 4.8rem);
}

.links-page .page-hero p {
  max-width: 760px;
}

.links-page .meta-line {
  margin-top: 24px;
}

.guide-section {
  padding-top: 28px;
}

.guide-layout {
  display: grid;
  gap: 30px;
  align-items: start;
}

.industry-directory {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.94);
}

.directory-rail {
  display: grid;
  align-content: start;
  min-width: 0;
  background: rgba(255, 255, 255, 0.075);
}

.directory-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 16px;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.25;
  border-bottom: 1px solid rgba(245, 245, 242, 0.06);
}

.directory-rail a:hover,
.directory-rail a:focus-visible,
.directory-rail a.active {
  color: var(--teal);
  background: rgba(5, 5, 6, 0.84);
}

.directory-rail b {
  color: inherit;
  font-size: 1.35rem;
  font-weight: 500;
}

.directory-panel {
  min-width: 0;
  padding: 24px 40px 30px;
}

.directory-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.directory-panel-head span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-panel-head small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: right;
}

.industry-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 58px;
}

.industry-columns a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 7px 0 9px;
  color: var(--ink);
  border-bottom: 1px solid rgba(245, 245, 242, 0.055);
}

.industry-columns a:hover,
.industry-columns a:focus-visible {
  color: var(--teal);
  border-bottom-color: rgba(66, 242, 200, 0.34);
}

.industry-columns span {
  font-size: 1rem;
  line-height: 1.28;
}

.industry-columns small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.guide-index {
  position: sticky;
  top: 82px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(16px);
}

.guide-index span {
  margin-right: 6px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
  font-weight: 820;
  white-space: nowrap;
}

.guide-index a:hover,
.guide-index a:focus-visible {
  border-color: rgba(66, 242, 200, 0.34);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.045);
}

.guide-index small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.guide-content {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.resource-category {
  scroll-margin-top: 142px;
}

.resource-row[id] {
  scroll-margin-top: 142px;
}

.category-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.category-head p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  margin: 0;
  border: 1px solid rgba(66, 242, 200, 0.28);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-head h2 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.resource-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(5, 5, 6, 0.9);
}

.resource-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.026);
}

.resource-row + .resource-row {
  border-top: 1px solid rgba(245, 245, 242, 0.09);
}

.resource-row h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.resource-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
  overflow-wrap: break-word;
}

.requirement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.requirement-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 225, 156, 0.92);
  background: rgba(255, 209, 102, 0.045);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.region-row,
.sector-row,
.industry-row {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: start;
}

.region-row .resource-actions,
.sector-row .resource-actions,
.industry-row .resource-actions {
  align-content: flex-start;
}

.resource-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(66, 242, 200, 0.24);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.035);
  font-size: 0.76rem;
  font-weight: 880;
  white-space: nowrap;
}

.resource-actions a:hover,
.resource-actions a:focus-visible {
  border-color: rgba(66, 242, 200, 0.52);
  color: var(--ink);
  background: rgba(66, 242, 200, 0.08);
}

.feeds-page .page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.15rem, 7vw, 6.6rem);
}

.feeds-page .section {
  padding: 62px 0;
}

.feeds-page .section-tight {
  padding-top: 38px;
}

.readable-feed {
  grid-template-columns: 1fr;
  max-width: 920px;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.latest-item {
  min-width: 0;
  background: rgba(5, 5, 6, 0.94);
}

.readable-feed .latest-item + .latest-item {
  border-top: 1px solid var(--line);
}

.latest-link {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px 20px;
}

.latest-link:hover,
.latest-link:focus-visible {
  background: rgba(255, 255, 255, 0.055);
}

.latest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.latest-link span,
.latest-link time {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.latest-meta span,
.latest-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.latest-meta time {
  border-color: rgba(66, 242, 200, 0.24);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.045);
}

.latest-link strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.latest-summary {
  display: -webkit-box;
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: break-word;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-width: 0;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: var(--radius);
  color: var(--amber);
  background: rgba(255, 209, 102, 0.055);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(122, 182, 255, 0.26);
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(122, 182, 255, 0.055);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.latest-link .sector-tag {
  color: var(--amber);
}

.latest-link .platform-tag {
  color: var(--blue);
}

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

.feeds-page .feed-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feed-panel {
  display: grid;
  align-content: start;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.compact-feed-panel {
  align-content: stretch;
}

.feed-panel-head {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.feed-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.feed-panel p {
  margin: 0;
  color: var(--soft);
}

.source-detail {
  border-top: 1px solid var(--line);
}

.source-detail summary {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--teal);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  list-style: none;
}

.source-detail summary::-webkit-details-marker {
  display: none;
}

.source-detail summary::after {
  content: "+";
  margin-left: auto;
  color: var(--muted);
  font-weight: 850;
}

.source-detail[open] summary {
  border-bottom: 1px solid var(--line);
}

.source-detail[open] summary::after {
  content: "-";
}

.feeds-page .feed-panel:has(.source-detail[open]) {
  grid-column: 1 / -1;
}

.feeds-page .feed-panel:has(.source-detail[open]) .feed-panel-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.feeds-page .feed-panel:has(.source-detail[open]) .headline-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-freshness {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 4px 10px;
  border: 1px solid rgba(66, 242, 200, 0.26);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.055);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.headline-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: source-headlines;
  background: var(--line);
  gap: 1px;
}

.headline-item {
  min-width: 0;
  counter-increment: source-headlines;
}

.headline-entry {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-width: 0;
  gap: 8px 14px;
  height: 100%;
  padding: 16px 18px;
  background: rgba(5, 5, 6, 0.92);
}

.headline-entry::before {
  content: counter(source-headlines);
  grid-row: 1 / span 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.headline-entry:hover {
  background: rgba(255, 255, 255, 0.045);
}

.headline-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.headline-link {
  color: var(--ink);
  font-weight: 850;
}

.headline-link:hover,
.headline-link:focus-visible {
  color: var(--teal);
}

.headline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.headline-date {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid rgba(66, 242, 200, 0.22);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(66, 242, 200, 0.045);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.headline-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.feed-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--muted);
}

.feed-empty strong {
  color: var(--amber);
}

.feed-url {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.24);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.77rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--panel-strong);
}

.article-card time,
.article-date {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.article-card h3 {
  margin: 26px 0 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-card p {
  margin: 0;
  color: var(--soft);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.card-footer span:last-child {
  color: var(--ink);
}

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

.topic {
  min-width: 0;
  min-height: 142px;
  padding: 22px;
  background: rgba(5, 5, 6, 0.92);
}

.topic h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.topic p {
  margin: 0;
  color: var(--muted);
}

.feed-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.feed-strip h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0;
}

.feed-strip p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.article-shell {
  max-width: 850px;
  margin: 0 auto;
}

.article-body {
  padding: 78px 0 96px;
}

.article-body h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.article-body p,
.article-body li {
  color: var(--soft);
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 1.2rem;
}

.article-note {
  margin: 40px 0;
  padding: 20px;
  border: 1px solid rgba(66, 242, 200, 0.25);
  border-radius: var(--radius);
  background: rgba(66, 242, 200, 0.055);
}

.article-note p {
  margin: 0;
  color: #ddfff7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 850;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--ink);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 106px;
    padding: 14px 0;
  }

  .links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .page-hero {
    padding-top: 156px;
  }

  .section-head,
  .article-grid,
  .source-grid,
  .feed-status,
  .latest-list,
  .feed-board,
  .publication-feature,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .publication-cover {
    min-height: 340px;
  }

  .article-card {
    min-height: 260px;
  }

  .feed-strip,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-layout,
  .resource-row {
    grid-template-columns: 1fr;
  }

  .industry-directory {
    grid-template-columns: 1fr;
  }

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

  .directory-rail a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .directory-panel {
    padding: 18px;
  }

  .directory-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .directory-panel-head small {
    text-align: left;
  }

  .industry-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .industry-columns a {
    padding: 10px 0;
  }

  .region-row,
  .sector-row,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .guide-index {
    position: static;
  }

  .resource-category {
    scroll-margin-top: 174px;
  }

  .resource-row[id] {
    scroll-margin-top: 174px;
  }

  .resource-actions {
    justify-content: flex-start;
  }

  .feeds-page .feed-board {
    grid-template-columns: 1fr;
  }

  .feeds-page .feed-panel:has(.source-detail[open]) .feed-panel-head,
  .feeds-page .feed-panel:has(.source-detail[open]) .headline-list {
    grid-template-columns: 1fr;
  }

  .feeds-page .page-hero {
    padding-top: 150px;
  }
}

@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .links {
    font-size: 0.82rem;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  .page-hero p,
  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .page-hero p,
  .section-head p,
  .article-card p,
  .resource-row p,
  .topic p,
  .feed-strip p {
    overflow-wrap: break-word;
  }

  .meta-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pill {
    width: 100%;
    min-height: 30px;
    padding: 5px 10px;
    white-space: normal;
  }

  .section,
  .article-body {
    padding: 58px 0;
  }

  .article-card,
  .topic,
  .publication-cover,
  .publication-detail,
  .resource-row,
  .feed-strip {
    padding: 18px;
  }

  .category-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .links-page .page-hero {
    padding-top: 150px;
    padding-bottom: 28px;
  }

  .links-page .page-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .links-page .meta-line {
    margin-top: 22px;
  }

  .links-page .guide-index {
    display: none;
  }
}
