:root {
  color-scheme: light;
  --cursor-x: 50vw;
  --cursor-y: 28vh;
  --reach-tilt-x: 0deg;
  --reach-tilt-y: 0deg;
  --yellow: #facd62;
  --yellow-deep: #e3a327;
  --bulb-size: 9px;
  --bulb-core: radial-gradient(circle at 31% 26%, var(--paper) 0 10%, var(--yellow) 11% 70%, var(--yellow-deep) 100%);
  --bulb-core-white: radial-gradient(circle at 31% 26%, var(--paper) 0 22%, rgba(255, 253, 247, 0.96) 23% 58%, var(--wash) 72% 88%, rgba(49, 45, 42, 0.18) 100%);
  --bulb-shadow: inset 1px 1px 1px rgba(255, 253, 247, 0.88), inset -1px -1px 1px rgba(24, 21, 18, 0.12), 0 0 0 1px rgba(227, 163, 39, 0.18), 0 0 11px rgba(250, 205, 98, 0.74), 0 0 20px rgba(250, 205, 98, 0.3);
  --bulb-shadow-white: inset 1px 1px 1px rgba(255, 253, 247, 0.96), inset -1px -1px 1px rgba(49, 45, 42, 0.18), 0 0 0 1px rgba(49, 45, 42, 0.28), 0 0 0 2px rgba(255, 253, 247, 0.28), 0 0 12px rgba(255, 253, 247, 0.78);
  --ink: #181512;
  --grey: #312d2a;
  --muted: #6f675d;
  --paper: #fffdf7;
  --wash: #f1ece3;
  --card-border: rgba(49, 45, 42, 0.24);
  --card-border-hover: rgba(49, 45, 42, 0.34);
  --pill-bg: rgba(255, 253, 247, 0.72);
  --pill-hover-bg: linear-gradient(180deg, var(--paper), var(--yellow));
  --card-bg: rgba(255, 253, 247, 0.82);
  --max: 1280px;
  --page: min(calc(100% - 32px), var(--max));
  --card-r: 16px;
  --card-pad: 24px;
  --grid-gap: 24px;
  --section-gap: 64px;
  --nav-h: 40px;
  --nav-pad-y: 12px;
  --scroll-offset: calc(var(--nav-h) + (var(--nav-pad-y) * 2) + var(--grid-gap));
  --hero-pad-y: var(--grid-gap);
  --hero-pad-end: var(--grid-gap);
  --s1: 8px;
  --s2: 12px;
  --s3: 18px;
  --s4: 24px;
  --s6: 56px;
  --lift-y: -5px;
  --lift-shadow: 0 18px 34px rgba(49, 45, 42, 0.09), 0 34px 72px rgba(49, 45, 42, 0.075);
  --lift-shadow-quiet: 0 12px 24px rgba(49, 45, 42, 0.075), 0 22px 48px rgba(49, 45, 42, 0.06);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --lift-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --speed: 360ms;
  --lift-speed: 860ms;
  --shine-speed: 1350ms;
  --press-speed: 180ms;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-md: 15px;
  --text-lg: 17px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 34px;
  --text-4xl: 48px;
  --text-hero: 39px;
  --text-5xl: 68px;
  --text-prose: 18px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--wash);
  scroll-behavior: smooth;
  scrollbar-color: var(--grey) var(--wash);
  text-size-adjust: 100%;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 246, 219, 0.94) 42%, rgba(241, 236, 227, 0.98) 100%);
  color: var(--grey);
  font: 400 15px/1.5 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(920px 620px at var(--cursor-x) var(--cursor-y), rgba(250, 205, 98, 0.5), rgba(250, 205, 98, 0.2) 38%, rgba(255, 253, 247, 0) 72%),
    linear-gradient(120deg, rgba(255, 253, 247, 0.62), rgba(227, 163, 39, 0.14));
  opacity: 0.86;
}

body > * {
  position: relative;
  z-index: 1;
}

:is(a, h1, h2, h3, p, span, strong, small, time, dt, dd, label, input, button, figcaption) {
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(227, 163, 39, 0.74);
  outline-offset: 5px;
}

[hidden] {
  display: none !important;
}

#fields,
#archive,
#mission {
  scroll-margin-top: var(--scroll-offset);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 600;
  transform: translateY(-160%);
}

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

.nav-wrap,
main {
  width: var(--page);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(221, 213, 200, 0.82);
  background: var(--paper);
}

.nav-wrap {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-block: var(--nav-pad-y);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: 132px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(49, 45, 42, 0.14));
}

.footer-logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.filter-nav,
.post-meta,
.archive-pagination,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-nav {
  justify-content: flex-end;
}

.filter-nav a,
.button,
.back-link,
.archive-page-button,
.post-meta span {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 0 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--lift-speed) var(--lift-ease),
    box-shadow var(--lift-speed) var(--lift-ease),
    border-color var(--speed) var(--ease),
    background var(--speed) var(--ease);
  backface-visibility: hidden;
  will-change: transform;
}

button.archive-page-button {
  appearance: none;
  cursor: pointer;
}

.archive-page-button {
  min-width: 50px;
}

.filter-nav a::before,
.button::before,
.back-link::before,
.archive-page-button::before,
.post-meta span::before,
.field-card::after,
.network-source::after,
.reach-network-node::before {
  width: var(--bulb-size);
  height: var(--bulb-size);
  flex: 0 0 var(--bulb-size);
  content: "";
  border-radius: 50%;
  background: var(--bulb-core);
  box-shadow: var(--bulb-shadow);
  transform: translate3d(0, 0, 0);
  animation: bulb-flicker 5.8s linear infinite;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), filter var(--speed) var(--ease);
}

.filter-nav a:nth-child(2n)::before,
.network-card:nth-child(2n) .network-source::after,
.field-card:nth-child(2n)::after,
.archive-card:nth-child(2n) .post-meta span::before {
  animation-delay: -1.9s;
}

.filter-nav a:nth-child(3n)::before,
.network-card:nth-child(3n) .network-source::after,
.field-card:nth-child(3n)::after,
.archive-card:nth-child(3n) .post-meta span::before {
  animation-delay: -3.4s;
}

.filter-nav a:hover,
.button:hover,
.back-link:hover,
.archive-page-button:hover,
.archive-card a:hover .post-meta span {
  border-color: var(--card-border-hover);
  background: var(--pill-hover-bg);
}

.filter-nav a:hover,
.button:hover,
.back-link:hover,
.archive-page-button:hover {
  box-shadow: var(--lift-shadow-quiet);
  transform: translate3d(0, var(--lift-y), 0);
}

.filter-nav a:active,
.button:active,
.back-link:active,
.archive-page-button:active {
  transform: translate3d(0, -2px, 0);
  transition-duration: var(--press-speed);
  box-shadow: none;
}

.filter-nav a:hover::before,
.button:hover::before,
.back-link:hover::before,
.archive-page-button:hover::before,
.field-card:hover::after,
.archive-card a:hover .post-meta span::before {
  background: var(--bulb-core-white);
  box-shadow: var(--bulb-shadow-white);
  filter: brightness(1.08) saturate(0.84);
  transform: translate3d(0, -1px, 0) scale(1.14);
}

.filter-nav a.active {
  background: var(--yellow);
  border-color: var(--card-border-hover);
}

.archive-page-button.active {
  border-color: var(--card-border-hover);
  background: var(--yellow);
  color: var(--ink);
}

.filter-nav a.active::before,
.archive-page-button.active::before {
  background: var(--bulb-core-white);
  box-shadow: var(--bulb-shadow-white);
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 7px;
  border-bottom: 4px solid var(--yellow);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
}

.hero {
  min-height: auto;
  display: grid;
  align-content: start;
  margin: 0;
  padding: var(--hero-pad-y) 0 var(--hero-pad-end);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: var(--section-gap);
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: var(--s4);
  max-width: 820px;
}

#hero-title {
  max-width: 100%;
  color: var(--ink);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: normal;
}

.hero-deck {
  max-width: 720px;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.hero .button {
  justify-self: start;
}

.reach-hero,
.network-card,
.archive-card a,
.field-card,
.closing-statement,
.article-cover,
.article-content blockquote,
.article-summary,
.article-end {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--card-r);
  background: var(--card-bg);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--lift-speed) var(--lift-ease),
    box-shadow var(--lift-speed) var(--lift-ease),
    border-color var(--speed) var(--ease),
    background var(--speed) var(--ease);
  backface-visibility: hidden;
  will-change: transform;
}

.reach-hero:hover,
.network-card:hover,
.archive-card a:hover,
.field-card:hover,
.closing-statement:hover,
.article-cover:hover,
.article-content blockquote:hover,
.article-summary:hover,
.article-end:hover {
  border-color: var(--card-border-hover);
  background: var(--paper);
  box-shadow: var(--lift-shadow);
  transform: translate3d(0, var(--lift-y), 0);
}

.network-card:hover {
  background: var(--pill-hover-bg);
}

.network-card:hover .network-source::after {
  background: var(--bulb-core-white);
  box-shadow: var(--bulb-shadow-white);
  filter: brightness(1.08) saturate(0.84);
  transform: translate3d(0, -1px, 0) scale(1.14);
}

.reach-hero {
  display: grid;
  align-items: stretch;
  min-height: 320px;
  height: 100%;
  padding: var(--card-pad);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 249, 230, 0.7)),
    var(--card-bg);
  cursor: crosshair;
  perspective: 900px;
}

.reach-total {
  display: block;
  width: 100%;
  color: var(--ink);
  max-width: 100%;
  font-size: var(--reach-total-size, clamp(28px, 2.5vw, 40px));
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  white-space: nowrap;
}

.reach-map {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-radius: calc(var(--card-r) - 6px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.76), rgba(255, 247, 221, 0.44)),
    linear-gradient(45deg, rgba(49, 45, 42, 0.04), transparent 42% 58%, rgba(49, 45, 42, 0.03));
  transform: rotateX(var(--reach-tilt-x)) rotateY(var(--reach-tilt-y));
  transition: transform 520ms var(--lift-ease);
}

.reach-map::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(rgba(49, 45, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 45, 42, 0.045) 1px, transparent 1px);
  background-position: 0 0, 0 0;
  background-size: 28px 28px, 28px 28px;
  opacity: 0.58;
  -webkit-mask-image: linear-gradient(135deg, transparent, #000 16% 84%, transparent);
  mask-image: linear-gradient(135deg, transparent, #000 16% 84%, transparent);
  animation: reach-field-drift 16s linear infinite;
}

.reach-map::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.62), transparent 24% 76%, rgba(255, 253, 247, 0.62)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.56), transparent 28% 72%, rgba(255, 253, 247, 0.56));
  pointer-events: none;
}

.reach-field {
  position: absolute;
  display: block;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(49, 45, 42, 0.14) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(227, 163, 39, 0.16) 0 1px, transparent 1.8px);
  background-position: 0 0, 17px 13px;
  background-size: 36px 36px, 48px 48px;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
  animation: reach-field-drift 20s linear infinite;
}

.reach-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.reach-network line,
.reach-network circle {
  vector-effect: non-scaling-stroke;
}

.reach-edge {
  stroke: rgba(49, 45, 42, 0.18);
  stroke-width: 0.7;
  stroke-linecap: round;
}

.reach-edge.is-strong {
  stroke: rgba(227, 163, 39, 0.34);
  stroke-width: 0.95;
}

.reach-cursor-edge {
  stroke: rgba(24, 21, 18, 0.34);
  stroke-width: 0.9;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  animation: reach-dash 760ms linear infinite;
}

.reach-network-nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.reach-network-node {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--bulb-size);
  height: var(--bulb-size);
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  will-change: transform, opacity;
}

.reach-network-node::before {
  display: block;
  animation-delay: var(--reach-node-flicker-delay, 0s);
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease);
}

.reach-network-node.is-near::before,
.reach-network-node.is-seed::before {
  background: var(--bulb-core-white);
  box-shadow: var(--bulb-shadow-white);
  filter: brightness(1.08) saturate(0.84);
}

.reach-packet {
  fill: rgba(255, 253, 247, 0.94);
  stroke: rgba(227, 163, 39, 0.28);
  stroke-width: 0.5;
  filter:
    drop-shadow(0 0 6px rgba(255, 253, 247, 0.9))
    drop-shadow(0 0 12px rgba(250, 205, 98, 0.48));
}

.reach-cursor-node {
  fill: rgba(255, 253, 247, 0.94);
  stroke: rgba(49, 45, 42, 0.36);
  stroke-width: 1;
  filter:
    drop-shadow(0 0 8px rgba(255, 253, 247, 0.9))
    drop-shadow(0 0 14px rgba(250, 205, 98, 0.4));
}

.reach-cursor-ring {
  fill: none;
  stroke: rgba(227, 163, 39, 0.36);
  stroke-width: 0.75;
  stroke-dasharray: 3 4;
  animation: reach-dash 920ms linear infinite reverse;
}

.reach-echo {
  fill: none;
  stroke: rgba(227, 163, 39, 0.28);
  stroke-width: 0.8;
}

.reach-spark {
  fill: rgba(255, 253, 247, 0.96);
  stroke: rgba(227, 163, 39, 0.24);
  stroke-width: 0.45;
  filter: drop-shadow(0 0 8px rgba(250, 205, 98, 0.52));
}

.reach-metric {
  position: relative;
  z-index: 4;
  width: min(88%, 300px);
  min-width: 0;
  min-height: 104px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 16px 20px;
  border: 1px solid rgba(49, 45, 42, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.58) 70%),
    rgba(255, 253, 247, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.9),
    0 14px 36px rgba(49, 45, 42, 0.08),
    0 0 0 1px rgba(250, 205, 98, 0.14);
  text-align: center;
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  overflow: hidden;
  pointer-events: none;
  transition: transform var(--lift-speed) var(--lift-ease), box-shadow var(--lift-speed) var(--lift-ease);
}

.reach-metric::after {
  position: absolute;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.reach-metric::after {
  inset: 0;
  z-index: 0;
  background: linear-gradient(112deg, transparent 0 34%, rgba(255, 253, 247, 0.86) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translate3d(-82%, 0, 0);
  animation: reach-sheen 7.2s var(--ease) infinite;
}

.reach-metric span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.reach-hero:hover {
  background: var(--paper);
}

.reach-hero:hover .reach-metric {
  transform: scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.96),
    0 18px 44px rgba(49, 45, 42, 0.1),
    0 0 0 2px rgba(250, 205, 98, 0.18);
}

.reach-metric span,
.reach-total {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 0 rgba(255, 253, 247, 0.72);
}

.network-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: stretch;
  margin-top: var(--grid-gap);
}

.network-card {
  width: 100%;
  min-width: 0;
  min-height: 154px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--s2);
  padding: var(--card-pad);
}

.network-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.network-source::after {
  align-self: center;
}

.network-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  font-size: var(--text-md);
  line-height: 1;
  opacity: 0.9;
  filter: drop-shadow(0 1px 1px rgba(49, 45, 42, 0.12));
}

.network-card strong {
  align-self: end;
  color: var(--ink);
  font-size: var(--text-3xl);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  white-space: nowrap;
}

.network-card span:last-child {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.22;
}

.section-band {
  padding: var(--section-gap) 0 0;
}

.fields.section-band {
  padding-top: 0;
}

.archive.section-band {
  padding-top: var(--grid-gap);
}

.archive-card a:active,
.field-card:active,
.network-card:active,
.reach-hero:active {
  transform: translate3d(0, -2px, 0);
  transition-duration: var(--press-speed);
  box-shadow: var(--lift-shadow-quiet);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--grid-gap);
}

.field-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: var(--s2);
  padding: var(--card-pad) calc(var(--card-pad) + 28px) var(--card-pad) var(--card-pad);
}

.field-card::after {
  position: absolute;
  top: calc(var(--card-pad) + 9px);
  right: var(--card-pad);
}

.field-filter {
  appearance: none;
  cursor: pointer;
  text-align: left;
}

.field-card span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.28;
}

.field-card strong {
  color: var(--ink);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.14;
}

.field-card small {
  align-self: start;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.42;
}

.field-filter:hover,
.field-filter.active {
  border-color: var(--card-border-hover);
  background: var(--pill-hover-bg);
  box-shadow: var(--lift-shadow-quiet);
}

.field-filter.active::after {
  background: var(--bulb-core-white);
  box-shadow: var(--bulb-shadow-white);
  filter: brightness(1.08) saturate(0.84);
  transform: translate3d(0, -1px, 0) scale(1.14);
}

.post-meta span {
  width: fit-content;
}

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

.archive-card.is-entering {
  animation: archive-card-enter 520ms var(--lift-ease) both;
  animation-delay: var(--archive-delay, 0ms);
}

.archive-card.is-leaving {
  pointer-events: none;
  animation: archive-card-leave 170ms var(--ease) both;
}

.archive-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  align-content: start;
}

.image-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
  background: var(--wash);
  isolation: isolate;
  line-height: 0;
}

.image-frame::after {
  position: absolute;
  inset: -44% -80%;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 38%, rgba(255, 253, 247, 0.04) 45%, rgba(255, 253, 247, 0.42) 50%, rgba(250, 205, 98, 0.16) 53%, transparent 62%);
  filter: blur(1px);
  opacity: 0;
  transform: translate3d(-42%, 0, 0) skewX(-12deg);
  transition: opacity 480ms var(--ease), transform var(--shine-speed) var(--lift-ease);
}

.image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: filter 760ms var(--ease);
}

.archive-card-badge {
  position: absolute;
  right: var(--s2);
  bottom: var(--s2);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(14, 17, 19, 0.72);
  color: #fffdfa;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.archive-card a:hover .image-frame::after {
  opacity: 1;
  transform: translate3d(42%, 0, 0) skewX(-12deg);
}

.archive-card a:hover img {
  filter: saturate(1.04) contrast(1.08);
}

.archive-card-body {
  display: grid;
  align-content: start;
  gap: var(--s3);
  padding: var(--card-pad);
}

.archive-card-body strong {
  color: var(--ink);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.14;
}

.archive-card-body > span:last-child {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.post-meta {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.archive-pagination {
  gap: var(--grid-gap);
  justify-content: flex-start;
  margin-top: var(--grid-gap);
}

.archive-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.archive-page-button:disabled:hover {
  border-color: var(--card-border);
  background: var(--pill-bg);
  box-shadow: none;
  transform: none;
}

.archive-page-ellipsis {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.archive-empty {
  padding: var(--grid-gap) 0;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 600;
}

.closing-statement {
  display: grid;
  gap: var(--s2);
  margin: var(--grid-gap) 0 0;
  padding: var(--card-pad);
}

.closing-statement p {
  max-width: 760px;
  color: var(--ink);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.04;
}

.closing-statement span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: var(--grid-gap) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto auto;
  gap: var(--s4);
  align-items: start;
  padding: var(--section-gap) max(16px, calc((100% - var(--max)) / 2));
  border-top: 1px solid rgba(221, 213, 200, 0.82);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px) saturate(1.12);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.footer-brand {
  display: grid;
  gap: var(--s2);
  max-width: 420px;
}

.footer-brand p {
  line-height: 1.5;
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
  gap: var(--s1);
}

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

.footer-mark {
  color: var(--muted);
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-deep));
  transform: scaleX(0);
  transform-origin: left;
  animation: article-progress linear both;
  animation-timeline: scroll(root block);
}

.article-shell {
  padding: var(--section-gap) 0 0;
}

.back-link {
  margin-bottom: var(--s4);
}

.article-header {
  display: grid;
  gap: var(--grid-gap);
}

.article-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.article-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: var(--section-gap);
  align-items: end;
}

.article-title-grid > div:first-child {
  display: grid;
  gap: var(--s4);
}

.article-header h1 {
  max-width: 10ch;
  color: var(--ink);
  font-size: var(--text-5xl);
  font-weight: 600;
  line-height: 0.84;
  text-wrap: balance;
}

.article-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--text-xl);
  line-height: 1.48;
}

.article-summary,
.article-end {
  padding: var(--card-pad);
}

.article-summary span,
.article-end span {
  display: block;
  margin-bottom: var(--s3);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.article-summary p,
.article-end p {
  color: var(--ink);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.18;
}

.article-cover {
  margin: 0;
  background: var(--ink);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.article-cover figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: min(360px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--card-r);
  background: rgba(24, 21, 18, 0.82);
  color: var(--paper);
  font-size: var(--text-sm);
  font-weight: 600;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 760px);
  gap: var(--section-gap);
  align-items: start;
  padding-top: var(--section-gap);
}

.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: var(--s1);
  padding-left: var(--s3);
  border-left: 7px solid var(--yellow);
  color: var(--muted);
  font-size: var(--text-sm);
}

.article-aside strong {
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 600;
}

.article-content {
  color: var(--grey);
  font-size: var(--text-prose);
  line-height: 1.82;
}

.article-content p + p {
  margin-top: var(--s4);
}

.article-content h2 {
  margin-top: var(--s6);
  color: var(--ink);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 0.98;
}

.article-content h2 + p {
  margin-top: var(--s3);
}

.article-content blockquote {
  margin: var(--section-gap) 0;
  padding: var(--card-pad);
  border-radius: var(--card-r);
  background: linear-gradient(90deg, var(--yellow) 0 10px, transparent 10px), var(--paper);
  color: var(--ink);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.16;
}

.article-end {
  margin-top: var(--section-gap);
}

@keyframes bulb-flicker {
  0%,
  71%,
  79%,
  100% {
    opacity: 1;
  }
  73% {
    opacity: 0.86;
  }
  75% {
    opacity: 1;
  }
  77% {
    opacity: 0.92;
  }
}

@keyframes reach-field-drift {
  from {
    background-position: 0 0, 17px 13px;
  }
  to {
    background-position: 36px 36px, 65px 61px;
  }
}

@keyframes reach-dash {
  to {
    stroke-dashoffset: -18;
  }
}

@keyframes reach-sheen {
  0%,
  52% {
    opacity: 0;
    transform: translate3d(-82%, 0, 0);
  }
  66% {
    opacity: 0.68;
  }
  100% {
    opacity: 0;
    transform: translate3d(82%, 0, 0);
  }
}

@keyframes archive-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes archive-card-leave {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(0.99);
  }
}

@keyframes article-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .read-progress {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(calc(100% - 24px), var(--max));
    --card-pad: 18px;
    --grid-gap: 16px;
    --section-gap: 40px;
    --nav-pad-y: 10px;
    --scroll-offset: var(--grid-gap);
    --hero-pad-y: var(--grid-gap);
    --hero-pad-end: var(--grid-gap);
    --text-xl: 18px;
    --text-2xl: 21px;
    --text-3xl: 28px;
    --text-4xl: 40px;
    --text-hero: 39px;
    --text-5xl: 42px;
    --text-prose: 16px;
  }

  .site-header {
    position: static;
  }

  .nav-wrap,
  .hero-grid,
  .network-strip,
  .field-grid,
  .archive-grid,
  .article-title-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: var(--s2);
    padding-block: var(--nav-pad-y);
  }

  .brand {
    align-self: flex-start;
  }

  .brand-logo {
    width: 132px;
  }

  .filter-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding: var(--hero-pad-y) 0 var(--hero-pad-end);
  }

  #hero-title {
    max-width: 100%;
    line-height: 1.03;
  }

  .network-card {
    min-height: 132px;
  }

  .field-card::after {
    top: calc(var(--card-pad) + 7px);
  }

  .footer-links {
    flex-direction: row;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 12px;
  }

  .article-aside {
    position: static;
  }

  .article-cover img {
    aspect-ratio: 16 / 10;
  }

  .article-cover figcaption {
    position: static;
    max-width: none;
    border-width: 1px 0 0;
    border-radius: 0;
  }
}
