/* Chill Ethical People — site styles (from the design handoff: proto.css + proto-site.jsx) */

:root {
  --night: #0E1626;
  --depth: #16213A;
  --fog: #EDEFE9;
  --moss: #9DBE8D;
  --slate: #7C8696;
  --amber: #E5A84B;
  --ember: #D96A5B;
  --hairline: rgba(237, 239, 233, 0.12);
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Instrument Sans', sans-serif;
  --mono: 'Space Mono', monospace;
  --post-copy: 920px;
  --post-wide: 920px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--night); }

body {
  font-family: var(--body);
  color: var(--fog);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p { margin: 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 40px; }

.capy { display: inline-block; line-height: 0; }

/* ————— nav ————— */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 22, 38, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }

.nav-brand .name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }

.nav-link {
  font-size: 15px;
  color: var(--slate);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s;
}

.nav-link:hover { color: var(--fog); }

.nav-link.active { color: var(--fog); border-bottom-color: var(--moss); }

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

.icon-link { line-height: 0; }

/* ————— buttons ————— */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(237, 239, 233, 0.25);
  color: var(--fog);
  background: transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  user-select: none;
}

.btn:hover { border-color: rgba(237, 239, 233, 0.5); background: rgba(237, 239, 233, 0.06); }

.btn:active { transform: scale(0.985); }

.btn.primary { background: var(--moss); border-color: var(--moss); color: var(--night); }

.btn.primary:hover { background: #AECB9F; border-color: #AECB9F; }

.btn.small { padding: 9px 16px; font-size: 14px; }

/* ————— capybara animations ————— */

.capy-draw .capy-outline,
.capy-draw .capy-eye {
  stroke-dasharray: var(--capy-path-len, 1);
  stroke-dashoffset: var(--capy-path-len, 1);
  animation: capy-draw 1.5s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.capy-draw .capy-eye { animation: capy-draw-eye 1.85s cubic-bezier(0.45, 0, 0.2, 1) forwards; }

@keyframes capy-draw-eye {
  0%, 72% { stroke-dashoffset: var(--capy-path-len, 1); }
  100% { stroke-dashoffset: 0; }
}

.capy-draw .capy-dot { animation: capy-fade 2.2s ease; }

@keyframes capy-draw {
  0% { stroke-dashoffset: var(--capy-path-len, 1); }
  100% { stroke-dashoffset: 0; }
}

@keyframes capy-fade {
  0% { opacity: 0; }
  77% { opacity: 0; }
  100% { opacity: 1; }
}

.capy-idle { animation: capy-breathe 7s ease-in-out 2.4s infinite; transform-origin: 50% 60%; }

/* yuzu drop — celebration easter egg */
.yuzu-drop { animation: yuzu-drop 1s cubic-bezier(0.34, 1.2, 0.5, 1); }

@keyframes yuzu-drop {
  0% { transform: translateY(-32px); opacity: 0; }
  40% { transform: translateY(0); opacity: 1; }
  58% { transform: translateY(-7px); }
  74% { transform: translateY(0); }
  86% { transform: translateY(-2.5px); }
  100% { transform: translateY(0); }
}

@keyframes capy-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.014); }
}

/* ————— scroll reveal & page transition ————— */

.rv { opacity: 1; transform: none; }
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); }
.rv.d1 { transition-delay: 60ms; }
.rv.d2 { transition-delay: 120ms; }
.rv.d3 { transition-delay: 180ms; }
.rv.d4 { transition-delay: 240ms; }
.rv.d5 { transition-delay: 300ms; }
.rv.d6 { transition-delay: 360ms; }
.rv.d7 { transition-delay: 420ms; }

.rv.rv-in,
.js .rv.rv-in { opacity: 1; transform: none; }

.no-observer .rv { opacity: 1; transform: none; }

.page-fade { animation: page-in 0.45s ease; }

@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
}

/* ————— yuzu band ————— */

.yuzu-band { background: rgba(229, 168, 75, 0.1); border-bottom: 1px solid rgba(229, 168, 75, 0.3); }

.yuzu-band-inner { padding-top: 11px; padding-bottom: 11px; display: flex; align-items: center; gap: 10px; }

.yuzu-band-inner svg { flex: 0 0 auto; }

.yuzu-band-link { display: flex; align-items: center; gap: 10px; }

.yuzu-band-text { font-family: var(--mono); font-size: 12px; color: var(--amber); letter-spacing: 0.06em; }

/* ————— hero (hybrid) ————— */

.hero { border-bottom: 1px solid var(--hairline); position: relative; overflow: hidden; padding: 96px 40px; }

.term-grid {
  background-image:
    repeating-linear-gradient(0deg, rgba(237, 239, 233, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(237, 239, 233, 0.035) 0 1px, transparent 1px 72px);
}

.hero-giant {
  position: absolute;
  right: -360px;
  top: -30px;
  opacity: 0.85;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .hero-giant { transform: scale(0.82); transform-origin: top right; right: -300px; }
}

@media (max-width: 1040px) {
  .hero-giant { opacity: 0.13; pointer-events: none; }
}

.hero-wrap { position: relative; padding: 0; max-width: 1080px; }

.hero-copy { max-width: 640px; }

.hero-whoami { font-family: var(--mono); font-size: 13.5px; color: var(--slate); margin-bottom: 22px; line-height: 1.6; }

.hero-whoami .mark { color: var(--moss); }

.hero-whoami .who { color: var(--fog); }

.hero-whoami .dim { opacity: 0.55; }

.hero-display {
  font-family: var(--display);
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.07;
  color: var(--fog);
  text-shadow: 0 2px 22px rgba(14, 22, 38, 0.92), 0 0 10px rgba(14, 22, 38, 0.85);
}

.hero-sub {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 520px;
  margin-top: 22px;
  text-shadow: 0 1px 14px rgba(14, 22, 38, 0.9);
}

.hero-ctas { display: flex; gap: 14px; margin-top: 34px; }

.hero-status {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate);
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-status svg { flex: 0 0 auto; }

/* ————— sections ————— */

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
}

.section-title { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--fog); }

.section-research { padding-top: 72px; padding-bottom: 40px; }

.section-tools { padding-top: 32px; padding-bottom: 56px; }

.post-list { margin-top: 28px; }

.section-more { margin-top: 26px; }

/* ————— post rows ————— */

.post-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
  cursor: pointer;
}

.pr-meta { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }

.pr-date { font-family: var(--mono); font-size: 11.5px; color: var(--slate); }

.pr-title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 640px;
  transition: color 0.18s;
}

.post-row:hover .pr-title { color: #FFFFFF; text-decoration: underline; text-decoration-color: rgba(157, 190, 141, 0.55); text-underline-offset: 5px; }

.pr-summary { font-size: 14.5px; color: var(--slate); margin-top: 8px; line-height: 1.55; max-width: 620px; }

.pr-tag { font-family: var(--mono); font-size: 11px; color: var(--slate); margin-top: 10px; letter-spacing: 0.08em; }

.pr-arrow { font-family: var(--mono); font-size: 18px; color: var(--moss); padding-top: 4px; transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.3, 1); }

.post-row:hover .pr-arrow { transform: translateX(6px); }

.chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--night);
  padding: 4px 10px;
  border-radius: 99px;
}

.chip-clear { background: var(--moss); }
.chip-watch { background: var(--amber); }
.chip-ember { background: var(--ember); }

/* ————— tool cards ————— */

.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }

.tool-card {
  background: var(--depth);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.22s, box-shadow 0.22s;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 190, 141, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.tc-head { display: flex; align-items: center; gap: 12px; }

.tc-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tool-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid var(--hairline);
}

.tool-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tool-mark svg { display: block; }

.tool-mark span {
  position: absolute;
  right: -3px;
  bottom: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--night);
  border: 1px solid rgba(157, 190, 141, 0.5);
  color: var(--moss);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1;
}

.tc-name { font-family: var(--mono); font-size: 17px; font-weight: 700; }

.tc-arrow { font-family: var(--mono); font-size: 18px; color: var(--moss); margin-left: auto; transition: transform 0.2s; }

.tool-card:hover .tc-arrow { transform: translate(2px, -2px); }

.tc-desc { font-size: 14px; color: #A8B0BC; line-height: 1.5; }

.tc-meta { display: flex; gap: 14px; font-family: var(--mono); font-size: 11px; color: var(--slate); margin-top: auto; }

.tc-lang { display: inline-flex; align-items: center; gap: 6px; }

.tc-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--moss); display: inline-block; }

/* ————— CTA band ————— */

.cta-wrap { padding-bottom: 8px; }

.cta {
  background: var(--depth);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-text { flex: 1; }

.cta-title { font-family: var(--display); font-size: 21px; font-weight: 600; }

.cta-sub { font-size: 14.5px; color: var(--slate); margin-top: 5px; }

/* ————— inner page heads ————— */

.page-head-wrap { padding-top: 64px; }

.page-title { font-family: var(--display); font-size: 42px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.12; }

.page-sub { font-size: 17px; color: var(--slate); max-width: 580px; margin-top: 16px; line-height: 1.6; }

.post-list-page { margin-top: 40px; }

.tool-grid-page { margin-top: 40px; }

.empty-note { color: var(--slate); font-family: var(--mono); font-size: 13px; padding: 26px 0; border-top: 1px solid var(--hairline); }

.github-band {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 26px;
  background: var(--depth);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}

.gb-text { font-size: 15px; color: #C7CCD4; }

.gb-org { font-family: var(--mono); color: var(--moss); }

.github-band .btn { margin-left: auto; flex: 0 0 auto; }

/* ————— single post ————— */

.post-wrap { max-width: 1000px; padding-top: 56px; }

.post-back { display: inline-block; font-family: var(--mono); font-size: 12px; color: var(--slate); margin-bottom: 28px; }

.post-back:hover { color: var(--fog); }

.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.post-meta-line { font-family: var(--mono); font-size: 12px; color: var(--slate); }

.post-title { font-family: var(--display); font-size: 40px; font-weight: 600; letter-spacing: 0; line-height: 1.12; }

.post-summary { font-size: 18px; color: #A8B0BC; line-height: 1.65; margin-top: 20px; max-width: var(--post-copy); }

.post-hero {
  margin: 28px 0 0;
  max-width: 760px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: var(--depth);
}

.post-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.post-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-bottom: 28px;
  max-width: var(--post-copy);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--slate);
}

.post-body {
  font-size: 16.5px;
  color: #C7CCD4;
  line-height: 1.75;
  margin-top: 36px;
  max-width: var(--post-copy);
}

.post-body p { margin: 0 0 18px; }

.post-body .md-h2 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--moss); margin: 40px 0 14px; font-weight: 700; }

.post-body .md-h3 { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--fog); margin: 32px 0 12px; }

.md-code {
  font-family: var(--mono);
  font-size: 14.5px;
  background: var(--depth);
  padding: 2px 7px;
  border-radius: 5px;
  color: var(--fog);
}

.codeblock {
  width: min(var(--post-wide), calc(100vw - 80px));
  max-width: none;
  background: var(--depth);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 22px 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 10px 0 24px;
  overflow-x: auto;
  color: var(--fog);
}

.codeblock code { font-family: inherit; }

.md-table-wrap {
  display: block;
  width: min(var(--post-wide), calc(100vw - 80px));
  max-width: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-collapse: collapse;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(22, 33, 58, 0.42);
  margin: 16px 0 26px;
}

.md-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
}

.md-table th:nth-child(1):nth-last-child(3),
.md-table td:nth-child(1):nth-last-child(3) { width: 38%; }

.md-table th:nth-child(2):nth-last-child(2),
.md-table td:nth-child(2):nth-last-child(2) { width: 18%; }

.md-table th:nth-child(3):nth-last-child(1),
.md-table td:nth-child(3):nth-last-child(1) { width: 44%; }

.md-table-confidence th:nth-child(1):nth-last-child(3),
.md-table-confidence td:nth-child(1):nth-last-child(3) { width: 40%; }

.md-table-confidence th:nth-child(2):nth-last-child(2),
.md-table-confidence td:nth-child(2):nth-last-child(2) { width: 18%; }

.md-table-confidence th:nth-child(3):nth-last-child(1),
.md-table-confidence td:nth-child(3):nth-last-child(1) { width: 42%; }

.md-table-attribution th:nth-child(1):nth-last-child(3),
.md-table-attribution td:nth-child(1):nth-last-child(3) { width: 28%; }

.md-table-attribution th:nth-child(2):nth-last-child(2),
.md-table-attribution td:nth-child(2):nth-last-child(2) { width: 48%; }

.md-table-attribution th:nth-child(3):nth-last-child(1),
.md-table-attribution td:nth-child(3):nth-last-child(1) { width: 24%; }

.md-table-geography th:nth-child(1):nth-last-child(3),
.md-table-geography td:nth-child(1):nth-last-child(3) { width: 14%; }

.md-table-geography th:nth-child(2):nth-last-child(2),
.md-table-geography td:nth-child(2):nth-last-child(2) { width: 46%; }

.md-table-geography th:nth-child(3):nth-last-child(1),
.md-table-geography td:nth-child(3):nth-last-child(1) { width: 40%; }

.md-table th:nth-child(1):nth-last-child(2),
.md-table td:nth-child(1):nth-last-child(2) { width: 30%; }

.md-table th:nth-child(2):nth-last-child(1),
.md-table td:nth-child(2):nth-last-child(1) { width: 70%; }

.md-table th,
.md-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  word-break: normal;
  overflow-wrap: anywhere;
}

.md-table th {
  color: var(--moss);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.md-table td:first-child {
  color: var(--slate);
}

.md-table td:last-child { color: var(--fog); }

.md-table th:last-child,
.md-table td:last-child { padding-right: 16px; }

.md-table tr:last-child td { border-bottom: none; }

.md-link { color: var(--moss); text-decoration: underline; text-decoration-color: rgba(157, 190, 141, 0.4); text-underline-offset: 4px; }

.md-link:hover { text-decoration-color: var(--moss); }

.md-list { margin: 0 0 18px; padding-left: 24px; }

.md-list li { margin-bottom: 6px; }

.md-quote { border-left: 3px solid var(--moss); margin: 0 0 18px; padding: 4px 0 4px 18px; color: var(--slate); }

.md-hr { border: none; border-top: 1px solid var(--hairline); margin: 28px 0; }

.md-img {
  width: min(var(--post-wide), calc(100vw - 80px));
  max-width: none;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  margin: 8px 0 22px;
}

.corrections {
  background: rgba(157, 190, 141, 0.07);
  border: 1px solid rgba(157, 190, 141, 0.25);
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 44px;
  max-width: 700px;
}

.corrections-label { margin-bottom: 6px; font-size: 10.5px; }

.corrections-text { font-size: 14px; color: #C7CCD4; line-height: 1.6; }

.post-pager {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--slate);
}

.post-pager a:hover { color: var(--fog); }

.post-pager .next { color: var(--fog); text-align: right; }

/* ————— about ————— */

.about-head { display: flex; align-items: center; gap: 36px; }

.about-sub { max-width: 600px; margin-top: 14px; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }

.value-card { border: 1px solid var(--hairline); border-radius: 14px; padding: 22px 26px; height: 100%; }

.value-h { font-family: var(--display); font-size: 17.5px; font-weight: 600; }

.value-p { font-size: 14px; color: var(--slate); margin-top: 8px; line-height: 1.55; }

.people-section { margin-top: 52px; }

.people-label { margin-bottom: 20px; }

.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.person-card {
  background: var(--depth);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: var(--night);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.member-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.person-name { font-family: var(--display); font-size: 18px; font-weight: 600; }

.person-role { font-family: var(--mono); font-size: 11.5px; color: var(--slate); margin-top: 5px; line-height: 1.6; }

.person-pitch { font-size: 13.5px; color: var(--slate); margin-top: 5px; line-height: 1.55; }

.open-seat { background: transparent; border: 1.5px dashed rgba(237, 239, 233, 0.25); }

.open-avatar {
  background: transparent;
  border: 1.5px dashed rgba(237, 239, 233, 0.25);
  font-family: var(--display);
  font-size: 24px;
  color: var(--slate);
}

.open-btn { margin-left: auto; flex: 0 0 auto; }

/* ————— 404 ————— */

.notfound { padding-top: 88px; text-align: center; }

.notfound .page-sub { margin-left: auto; margin-right: auto; }

.notfound-ctas { justify-content: center; }

/* ————— footer ————— */

.footer { margin-top: 72px; border-top: 1px solid var(--hairline); }

.footer-inner { padding-top: 32px; padding-bottom: 32px; display: flex; align-items: center; gap: 16px; }

.footer-tag { font-family: var(--mono); font-size: 11.5px; color: var(--slate); letter-spacing: 0.06em; }

.footer-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }

.footer-copy { font-family: var(--mono); font-size: 11.5px; color: var(--slate); }

/* ————— responsive ————— */

@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; flex-wrap: wrap; }
  .nav-links { gap: 18px; }
  .hero { padding: 64px 24px; }
  .hero-display { font-size: 42px; }
  .page-title { font-size: 32px; }
  .post-title { font-size: 30px; }
  .post-body { font-size: 16px; }
  .codeblock,
  .md-table-wrap,
  .md-img { width: calc(100vw - 48px); }
  .md-table { min-width: 720px; }
  .md-table { font-size: 11.5px; }
  .md-table th,
  .md-table td { padding: 11px 13px; }
  .tool-grid, .values-grid, .people-grid { grid-template-columns: 1fr; }
  .post-row { grid-template-columns: 1fr; gap: 12px; }
  .pr-meta { flex-direction: row; align-items: center; gap: 12px; }
  .pr-arrow { display: none; }
  .about-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .github-band { flex-wrap: wrap; }
  .footer-inner { flex-wrap: wrap; }
}

/* ————— reduced motion ————— */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
}
