:root {
  color-scheme: light;
  --ink: #151816;
  --muted: #66706a;
  --faint: #858e88;
  --line: #dce2de;
  --paper: #f6f8f6;
  --surface: #ffffff;
  --surface-2: #edf1ee;
  --green: #147a4e;
  --green-hover: #0e633e;
  --lime: #c9f06b;
  --coral: #ef6a4c;
  --cyan: #168e89;
  --signal: #b7dc35;
  --magenta: #d94f7b;
  --orange: #d86f36;
  --code: #20241f;
  --header: rgba(246, 248, 246, .94);
  --shadow: 0 12px 34px rgba(28, 39, 31, .09);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eef2ee;
  --muted: #aeb7b0;
  --faint: #89928b;
  --line: #343a35;
  --paper: #131613;
  --surface: #1a1e1b;
  --surface-2: #232823;
  --green: #77d6a2;
  --green-hover: #99e4b9;
  --lime: #c9f06b;
  --coral: #ff8468;
  --cyan: #63d8d0;
  --signal: #e6ff4a;
  --magenta: #ff5c8a;
  --orange: #ff9a52;
  --code: #0e100e;
  --header: rgba(19, 22, 19, .94);
  --shadow: 0 14px 40px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-wrap: anywhere;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  transition: background-color .2s ease, color .2s ease;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header .shell, .home-page .shell { width: min(1480px, calc(100% - 64px)); }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(14px);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; min-width: 0; max-width: min(44vw, 280px); align-items: center; gap: 10px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.logo-image { display: block; flex: 0 0 auto; width: auto; max-width: 120px; height: 32px; object-fit: contain; }
.logo-mark {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #303630;
  border-radius: 5px;
  background: #151816;
  color: var(--lime);
  font-size: 15px;
}
.logo-title { overflow: hidden; text-overflow: ellipsis; }
.nav-panel { margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.icon-button:hover { border-color: var(--green); color: var(--green); }
.theme-icon { font-size: 19px; line-height: 1; }
.theme-icon-light { display: none; }
html[data-theme="dark"] .theme-icon-dark { display: none; }
html[data-theme="dark"] .theme-icon-light { display: inline; }
.menu-toggle { display: none; font-size: 18px; }

/* Home hero */
.home-hero {
  position: relative;
  height: min(760px, calc(100svh - 92px));
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid #29312c;
  background: #0b0f0d;
  color: #fff;
}
.home-hero-grid { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.home-hero-grid::before, .home-hero-grid::after, .home-hero-grid span { content: ""; position: absolute; background: rgba(255, 255, 255, .055); }
.home-hero-grid::before { width: 1px; inset: 0 auto 0 9vw; }
.home-hero-grid::after { height: 1px; inset: 17% 0 auto; }
.home-hero-grid span { width: 1px; height: 100%; top: 0; }
.home-hero-grid span:nth-child(1) { left: 38%; }
.home-hero-grid span:nth-child(2) { left: 67%; }
.home-hero-grid span:nth-child(3) { right: 7vw; }
.home-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(620px, 1.28fr);
  gap: 64px;
  align-items: center;
  padding-block: 36px;
}
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.home-hero .eyebrow { color: var(--lime); }
.home-hero-content { position: relative; z-index: 3; min-width: 0; }
.home-positioning { margin: 0 0 14px; color: color-mix(in srgb, var(--home-accent, var(--lime)) 78%, white); font-size: 13px; font-weight: 800; }
.home-hero h1 { max-width: 100%; margin: 0; font-size: 72px; line-height: 1.08; text-wrap: balance; word-break: auto-phrase; }
.home-hero h1 + .actions { margin-top: 28px; }
.home-hero-copy { min-height: 5.4em; display: -webkit-box; max-width: 500px; margin: 18px 0 26px; overflow: hidden; color: rgba(255, 255, 255, .76); font-size: 17px; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-product-stage { position: relative; min-width: 0; width: min(860px, 58vw); justify-self: end; }
.home-project-orbit { position: absolute; width: 480px; aspect-ratio: 1; top: 50%; right: -210px; border: 1px solid rgba(201, 240, 107, .18); border-radius: 50%; transform: translateY(-50%); animation: home-orbit-turn 48s linear infinite; pointer-events: none; }
.home-project-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; top: 48px; left: 72px; border-radius: 50%; background: var(--home-accent, var(--lime)); box-shadow: 0 0 18px color-mix(in srgb, var(--home-accent, var(--lime)) 72%, transparent); }
.home-project-orbit span { position: absolute; border: 1px solid rgba(99, 216, 208, .16); border-radius: 50%; }
.home-project-orbit span:nth-child(1) { inset: 13%; }
.home-project-orbit span:nth-child(2) { inset: 28%; }
.home-project-orbit span:nth-child(3) { width: 7px; height: 7px; top: 49%; left: 49%; border: 0; background: var(--cyan); }
@keyframes home-orbit-turn { to { transform: translateY(-50%) rotate(360deg); } }
.home-stage-window { position: relative; z-index: 2; margin: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--home-accent, var(--lime)) 32%, #39413c); border-radius: 6px; background: #101411; box-shadow: 0 28px 70px rgba(0, 0, 0, .34); }
.home-stage-bar { height: 42px; display: grid; grid-template-columns: 72px minmax(0, 1fr) 34px; gap: 12px; align-items: center; padding-inline: 15px; border-bottom: 1px solid #303833; color: rgba(255, 255, 255, .6); font-size: 10px; }
.home-stage-bar > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-stage-bar b { color: var(--lime); font-family: "Cascadia Code", Consolas, monospace; text-align: right; }
.home-stage-dots { display: flex; gap: 6px; }
.home-stage-dots i { width: 6px; height: 6px; border-radius: 50%; background: #55605a; }
.home-stage-dots i:first-child { background: var(--coral); }
.home-stage-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #070a08; }
.home-hero-image { width: 100%; height: 100%; object-fit: contain; opacity: 1; transition: opacity .2s ease, transform .3s ease; }
.home-stage-window.is-switching .home-hero-image { opacity: .35; transform: scale(.99); }
.home-hero-project {
  min-height: 84px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 2px 16px;
  align-content: center;
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid #303833;
  visibility: hidden;
}
.home-hero-project.is-visible { visibility: visible; }
.home-hero-project span { color: var(--lime); font-size: 10px; font-weight: 800; }
.home-hero-project strong { min-width: 0; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.home-hero-project small { grid-column: 2; display: -webkit-box; max-width: 540px; overflow: hidden; color: rgba(255, 255, 255, .6); font-size: 11px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-stage-switcher { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 10px; border-block: 1px solid #303833; }
.home-stage-switcher:empty { display: none; }
.home-stage-switch { min-width: 0; min-height: 56px; display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 8px; align-items: center; padding: 8px 10px; border: 0; border-left: 1px solid #303833; background: transparent; color: rgba(255, 255, 255, .6); text-align: left; cursor: pointer; }
.home-stage-switch:first-child { border-left: 0; }
.home-stage-switch span { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid #4a534e; border-radius: 50%; font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.home-stage-switch strong { overflow: hidden; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.home-stage-switch:hover, .home-stage-switch.is-active { color: #fff; }
.home-stage-switch.is-active { box-shadow: inset 0 -2px var(--project-accent, var(--lime)); }
.home-stage-switch.is-active span { border-color: var(--project-accent, var(--lime)); color: var(--project-accent, var(--lime)); }
.home-hero-current { max-width: 500px; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .56); font-size: 10px; }
.home-hero-current span:first-child { color: color-mix(in srgb, var(--home-accent, var(--lime)) 78%, white); font-weight: 800; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.button.primary { border-color: var(--lime); background: var(--lime); color: #172014; }
.home-hero .button.primary { max-width: 100%; text-align: center; overflow-wrap: anywhere; }
.home-page { --home-accent: var(--lime); }
.home-hero .button.primary { border-color: color-mix(in srgb, var(--home-accent) 76%, white); background: color-mix(in srgb, var(--home-accent) 76%, white); }
.button:hover { transform: translateY(-1px); border-color: var(--lime); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: rgba(255, 255, 255, .76); font-size: 12px; }
.hero-meta b { margin-right: 4px; color: #fff; }

/* Sections */
.band { padding-block: 80px; }
.band.surface { background: var(--surface); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.section-head h2 { margin: 0; font-size: 32px; line-height: 1.3; }
.section-head > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-action { color: var(--green); font-size: 13px; font-weight: 800; text-decoration: none; }
.section-action:hover { color: var(--green-hover); }

/* Project cards */
.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.project-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.project-card:hover .project-media img { transform: scale(1.02); }
.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  font-size: 11px;
  font-weight: 800;
}
.status-badge::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #2fb76f; }
.project-body { padding: 20px; }
.project-body h3 { margin: 0 0 8px; font-size: 20px; }
.project-body > p { min-height: 48px; margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.project-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.project-stack { color: var(--faint); font-size: 11px; }
.text-link { color: var(--green); font-size: 13px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.text-link:hover { color: var(--green-hover); }

/* Home assets */
.home-section-head { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(280px, 1fr) auto; align-items: end; }
.home-section-head .section-kicker { margin-bottom: 7px; }
.home-section-head > p { justify-self: start; }
.home-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.home-projects .home-project-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; align-items: start; }
.home-projects .home-project-card:nth-child(1) { grid-column: span 7; }
.home-projects .home-project-card:nth-child(2) { grid-column: span 5; margin-top: 72px; }
.home-projects .home-project-card:nth-child(3) { grid-column: 2 / -2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); margin-top: 24px; }
.home-project-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--project-accent, var(--green)); border-radius: 6px; background: var(--surface); }
.home-project-media { height: auto; aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: #0b0f0d; }
.home-project-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.home-project-card:hover .home-project-media img { transform: scale(1.015); }
.home-project-status { position: absolute; top: 12px; left: 12px; padding: 5px 8px; border: 1px solid rgba(255, 255, 255, .26); border-radius: 3px; background: rgba(9, 13, 10, .82); color: #eef3ef; font-size: 10px; font-weight: 800; }
.home-project-body { min-height: 226px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px; }
.home-projects .home-project-card:nth-child(3) .home-project-media { height: 100%; min-height: 330px; aspect-ratio: auto; }
.home-projects .home-project-card:nth-child(3) .home-project-body { min-height: 330px; padding: 30px; }
.home-project-number { color: var(--project-accent, var(--green)); font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.home-project-body h3 { margin: 8px 0 0; font-size: 21px; line-height: 1.35; }
.home-project-body > p:not(.home-project-technologies) { display: -webkit-box; margin: 11px 0 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-project-technologies, .home-project-legacy-summary { margin: 12px 0 0; color: var(--faint); font-size: 10px; }
.home-project-body .text-link { margin-top: auto; padding-top: 18px; }

.home-writing { background: var(--paper); }
.home-writing-grid { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(340px, .68fr); grid-template-rows: repeat(2, minmax(245px, auto)); gap: 26px 34px; }
.home-writing-card { min-width: 0; display: grid; grid-template-columns: 40% minmax(0, 1fr); overflow: hidden; border-top: 2px solid var(--ink); background: transparent; text-decoration: none; }
.home-writing-card.is-primary { min-height: 520px; grid-row: span 2; grid-template-columns: 1fr; grid-template-rows: minmax(300px, 58%) minmax(0, 1fr); }
.home-writing-media { min-width: 0; min-height: 0; display: block; overflow: hidden; background: #101411; }
.home-writing-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.home-writing-card:hover .home-writing-media img { transform: scale(1.015); }
.home-writing-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 22px 6px 4px 22px; }
.home-writing-card.is-primary .home-writing-copy { padding: 24px 6px 4px 0; }
.home-writing-meta { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--green); font-size: 10px; font-weight: 800; }
.home-writing-meta time { color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-weight: 400; }
.home-writing-copy > strong { display: -webkit-box; margin-top: 13px; overflow: hidden; font-size: 18px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-writing-card.is-primary .home-writing-copy > strong { max-width: 650px; font-size: 27px; -webkit-line-clamp: 2; }
.home-writing-summary { display: -webkit-box; margin-top: 10px; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-writing-action { margin-top: auto; padding-top: 16px; color: var(--green); font-size: 12px; font-weight: 800; }
.home-writing-action i { font-style: normal; }
.home-writing-card:hover .home-writing-copy > strong { color: var(--green); }
.home-writing-card.no-cover { background: transparent; }
.home-writing-card.no-cover::before { content: "随手记"; min-height: 74px; display: grid; place-items: center; background: #111613; color: var(--lime); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.home-writing-card.is-primary.no-cover { grid-template-rows: 42% minmax(0, 1fr); }

.home-statement { border-block: 1px solid #2b332f; background: #0e1210; color: #eef3ef; }
.home-statement-inner { min-height: 180px; display: grid; grid-template-columns: 170px minmax(0, 1fr) auto; gap: 30px; align-items: center; }
.home-statement .section-kicker { margin: 0; color: var(--lime); }
.home-statement p:not(.section-kicker) { max-width: 760px; margin: 0; font-size: 20px; line-height: 1.75; }
.home-statement a { color: var(--cyan); font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.home-journal { border-top: 1px solid var(--line); }

/* Journal */
.journal-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.journal-entry { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 26px 20px 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.journal-entry:nth-child(odd) { border-right: 1px solid var(--line); }
.journal-entry:nth-child(even) { padding-left: 20px; }
.journal-date { color: var(--muted); font-size: 12px; line-height: 1.6; }
.journal-date b { display: block; color: var(--ink); font-size: 24px; }
.journal-entry h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.55; }
.journal-entry p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.journal-entry:hover h3 { color: var(--green); }

/* Home statement */
.manifesto { background: var(--ink); color: var(--surface); }
html[data-theme="dark"] .manifesto { background: #090b09; color: #f3f6f3; }
.manifesto-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }
.manifesto .section-kicker { color: var(--lime); }
.manifesto h2 { margin: 0; font-size: 38px; line-height: 1.3; }
.manifesto p { margin: 0; color: #bcc5bf; font-size: 17px; line-height: 2; }

/* List and taxonomy pages */
.page-hero { padding-block: 76px 48px; border-bottom: 1px solid var(--line); background: var(--surface); }
.page-hero.compact { padding-block: 58px 38px; }
.page-hero h1 { max-width: 860px; margin: 0; font-size: 48px; line-height: 1.2; }
.page-hero p { max-width: 670px; margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.content-section { padding-block: 58px 80px; }
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.post-card { display: grid; grid-template-columns: 42% 1fr; min-height: 230px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.post-card.no-cover { grid-template-columns: 1fr; }
.post-card-media { overflow: hidden; background: var(--surface-2); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .24s ease; }
.post-card:hover .post-card-media img { transform: scale(1.025); }
.post-card-body { display: flex; min-width: 0; flex-direction: column; padding: 20px; }
.post-card-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: 11px; }
.post-card-meta a { color: var(--green); text-decoration: none; }
.post-card h2 { margin: 9px 0 8px; font-size: 19px; line-height: 1.45; }
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { color: var(--green); }
.post-card-body > p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; color: var(--faint); font-size: 11px; }
.empty-state { padding: 54px 20px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); text-align: center; }
.pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 34px; }
.page-link { justify-self: start; display: inline-flex; min-height: 40px; align-items: center; padding-inline: 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); font-size: 13px; font-weight: 800; text-decoration: none; }
.page-link:last-child { justify-self: end; }
.page-link:hover { border-color: var(--green); color: var(--green); }
.page-link.disabled { opacity: .45; }
.page-count { color: var(--muted); font-size: 12px; }
.taxonomy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.taxonomy-item { display: flex; min-height: 90px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-decoration: none; }
.taxonomy-item:hover { border-color: var(--green); }
.taxonomy-item h2 { margin: 0; font-size: 17px; }
.taxonomy-item p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.taxonomy-count { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--surface-2); color: var(--green); font-size: 11px; font-weight: 900; }

/* Archive */
.archive-year { display: grid; grid-template-columns: 130px 1fr; gap: 40px; margin-bottom: 48px; }
.archive-year > h2 { position: sticky; top: 96px; align-self: start; margin: 0; color: var(--green); font-size: 34px; }
.archive-month { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding-bottom: 28px; border-top: 1px solid var(--line); }
.archive-month h3 { margin: 18px 0 0; color: var(--faint); font-size: 13px; }
.archive-post { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.archive-post time { color: var(--faint); font-size: 11px; }
.archive-post strong { font-size: 15px; }
.archive-post:hover strong { color: var(--green); }

/* Article */
.article-page { position: relative; }
.article-progress { position: fixed; z-index: 45; top: 68px; right: 0; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--cyan); pointer-events: none; }
.article-reading-shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.article-hero { overflow: hidden; border-bottom: 1px solid #2c3530; background: #101512; color: #f1f5f2; }
.article-hero-layout { min-height: 430px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: 64px; padding-block: 64px; }
.article-hero.no-cover .article-hero-layout { grid-template-columns: minmax(0, 860px); min-height: 380px; }
.article-hero-copy { min-width: 0; }
.article-context { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #8d9992; font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; }
.article-context a { color: #63d8d0; text-decoration: none; }
.article-context a:hover { color: #8ce9e2; }
.article-hero h1 { max-width: 780px; margin: 0; font-size: 50px; line-height: 1.2; text-wrap: balance; word-break: auto-phrase; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; color: #9da7a1; font-size: 11px; }
.article-meta span, .article-meta a { white-space: nowrap; }
.article-meta a { color: #dce4df; text-decoration: none; }
.article-meta a:hover { color: #63d8d0; }
.article-hero-media { min-width: 0; margin: 0; border: 1px solid #334139; background: #171e1a; }
.article-hero-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; }
.article-hero-media figcaption { min-height: 34px; display: flex; align-items: center; padding-inline: 12px; border-top: 1px solid #334139; color: #7f8b84; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.article-hero-media figcaption::before { content: ""; width: 7px; height: 7px; margin-right: 8px; background: #63d8d0; }
.article-brief { border-bottom: 1px solid var(--line); background: var(--surface); }
.article-brief-inner { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 40px; padding-block: 28px; }
.article-brief-label { margin: 3px 0 0; color: var(--green); font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; font-weight: 800; }
.article-brief-label::before { content: ""; }
.article-brief-inner > p:last-child { max-width: 760px; margin: 0; color: var(--ink); font-size: 16px; font-weight: 650; line-height: 1.75; }
.article-project-context { border-bottom: 1px solid var(--line); background: var(--surface-2); }
.article-context-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-block: 30px 18px; }
.article-context-header > div { min-width: 0; }
.article-context-header .article-brief-label { margin-bottom: 7px; }
.article-context-header p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.article-context-header > a { flex: 0 0 auto; color: var(--green); font-size: 12px; font-weight: 800; text-decoration: none; }
.article-context-header > a:hover { color: var(--green-hover); }
.article-project-list { display: grid; gap: 12px; padding-bottom: 30px; }
.article-project-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 38%); gap: 24px; min-width: 0; padding: 18px; border: 1px solid var(--line); background: var(--surface); }
.article-project-copy { min-width: 0; }
.article-project-title-row { display: flex; align-items: center; gap: 12px; min-width: 0; }
.article-project-title-row h3 { min-width: 0; margin: 0; font-size: 19px; line-height: 1.4; overflow-wrap: anywhere; }
.article-project-status { flex: 0 0 auto; padding: 4px 7px; border: 1px solid var(--line); color: var(--green); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.article-project-copy > p:not(.article-project-limitations) { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.article-project-facts { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: 13px; color: var(--faint); font-size: 11px; }
.article-project-limitations { margin: 12px 0 0; padding-left: 10px; border-left: 2px solid var(--orange); color: var(--muted); font-size: 11px; line-height: 1.7; }
.article-project-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.article-project-link { min-height: 30px; display: inline-flex; align-items: center; padding: 0 9px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 800; text-decoration: none; }
.article-project-link:hover, .article-project-link.is-primary { border-color: var(--green); color: var(--green); }
.article-project-evidence { min-width: 0; }
.article-project-evidence-label { margin: 0 0 8px; color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.article-project-media { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.article-project-media a { display: block; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.article-project-media a.is-primary { grid-column: 1 / -1; }
.article-project-media img { width: 100%; height: 66px; margin: 0; object-fit: cover; transition: transform .2s ease; }
.article-project-media a.is-primary img { height: 154px; }
.article-project-media a:hover img { transform: scale(1.025); }
.article-reading-layout { display: grid; grid-template-columns: minmax(0, 760px); justify-content: center; gap: 64px; padding-block: 58px 82px; }
.article-reading-layout.has-toc { grid-template-columns: 210px minmax(0, 760px); justify-content: space-between; }
.article-main-column { min-width: 0; }
.article-toc { min-width: 0; }
.article-toc-panel { position: sticky; top: 96px; border-top: 2px solid var(--ink); }
.article-toc-header { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.article-toc-header p { margin: 0; font-size: 12px; font-weight: 800; }
.article-toc-header p span { margin-left: 5px; color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.article-toc-toggle { display: none; padding: 5px 0; border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; cursor: pointer; }
.article-toc nav { padding-top: 13px; }
.article-toc ol { margin: 0; padding: 0; list-style: none; }
.article-toc li { margin: 0; }
.article-toc li.is-depth-3 { padding-left: 12px; }
.article-toc a { display: block; padding: 7px 0 7px 11px; border-left: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.5; text-decoration: none; }
.article-toc a:hover, .article-toc a.is-active { border-color: var(--cyan); color: var(--ink); }
.article-toc a.is-active { font-weight: 800; }
.article-content-body { counter-reset: article-section; font-size: 17px; line-height: 1.9; }
.article-content-body > :first-child { margin-top: 0; }
.article-content-body > :last-child { margin-bottom: 0; }
.article-content-body h2, .article-content-body h3, .article-content-body h4 { scroll-margin-top: 96px; margin: 2.25em 0 .85em; line-height: 1.45; text-wrap: balance; }
.article-content-body h2 { counter-increment: article-section; padding-top: 16px; border-top: 1px solid var(--line); font-size: 28px; }
.article-content-body h2::before { content: counter(article-section, decimal-leading-zero); display: block; margin-bottom: 10px; color: var(--cyan); font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; font-weight: 700; }
.article-content-body h3 { font-size: 21px; }
.article-content-body h4 { font-size: 17px; }
.article-content-body p { margin: 1.15em 0; }
.article-content-body ul, .article-content-body ol { margin: 1.15em 0; padding-left: 1.45em; }
.article-content-body li { margin: .45em 0; padding-left: .15em; }
.article-content-body li::marker { color: var(--green); font-weight: 800; }
.article-content-body a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content-body a:hover { color: var(--green-hover); }
.article-content-body figure { margin: 32px 0; }
.article-content-body img { width: auto; max-width: 100%; height: auto; margin: 30px auto; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); }
.article-content-body figure img { margin: 0 auto; }
.article-content-body figcaption { margin-top: 10px; color: var(--faint); font-size: 12px; line-height: 1.65; text-align: center; }
.article-content-body blockquote { margin: 30px 0; padding: 18px 22px; border: 0; border-left: 3px solid var(--green); background: var(--surface-2); color: var(--muted); }
.article-content-body blockquote > :first-child { margin-top: 0; }
.article-content-body blockquote > :last-child { margin-bottom: 0; }
.article-content-body code { padding: .14em .38em; border-radius: 3px; background: var(--surface-2); font-family: "Cascadia Code", Consolas, monospace; font-size: .88em; overflow-wrap: normal; }
.article-content-body pre { position: relative; overflow-x: auto; margin: 30px 0; padding: 46px 20px 20px; border: 1px solid #343b36; border-radius: 4px; background: var(--code); color: #e6ede7; font-size: 14px; line-height: 1.65; tab-size: 2; }
.article-content-body pre::before { content: "代码"; position: absolute; top: 16px; left: 20px; color: #7f8a84; font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.article-content-body pre code { display: block; min-width: max-content; padding: 0; background: transparent; color: inherit; }
.article-code-copy { position: absolute; top: 9px; right: 10px; min-width: 50px; min-height: 28px; padding: 0 9px; border: 1px solid #414b45; border-radius: 3px; background: #171b18; color: #b9c3bd; font-size: 11px; cursor: pointer; }
.article-code-copy:hover, .article-code-copy:focus-visible { border-color: #63d8d0; color: #63d8d0; outline: 0; }
.article-table-wrap { width: 100%; margin: 30px 0; overflow-x: auto; border: 1px solid var(--line); background: var(--surface); scrollbar-width: thin; }
.article-table-wrap:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.article-content-body table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; }
.article-content-body th, .article-content-body td { padding: 11px 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content-body th:last-child, .article-content-body td:last-child { border-right: 0; }
.article-content-body tr:last-child td { border-bottom: 0; }
.article-content-body th { background: var(--surface-2); font-size: 12px; }
.article-content-body hr { margin: 48px 0; border: 0; border-top: 1px solid var(--line); }
.article-content-body iframe, .article-content-body video { max-width: 100%; }
.article-content-body details { margin: 24px 0; padding: 14px 16px; border: 1px solid var(--line); background: var(--surface); }
.article-content-body summary { font-weight: 800; cursor: pointer; }
.article-content-body [data-callout] { margin: 28px 0; padding: 18px 20px; border-left: 3px solid var(--cyan); background: var(--surface-2); }
.article-content-body [data-callout="result"] { border-color: var(--signal); }
.article-content-body [data-callout="boundary"] { border-color: var(--orange); }
.article-content-body [data-callout="failure"] { border-color: var(--magenta); }
.article-shell { width: min(840px, calc(100% - 40px)); margin-inline: auto; }
.article-header { padding-block: 62px 32px; }
.article-cover { position: relative; height: 440px; overflow: hidden; background: #1d211e; color: #fff; }
.article-cover > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.article-cover::after { content: ""; position: absolute; inset: 0; background: rgba(7, 11, 8, .36); }
.article-cover-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 50px; }
.article-cover .article-header { padding-block: 0; }
.article-header h1 { margin: 0; font-size: 46px; line-height: 1.23; }
.article-cover .article-meta { color: rgba(255, 255, 255, .8); }
.article-content { padding-bottom: 70px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-tag { padding: 6px 9px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-size: 12px; text-decoration: none; }
.article-tag:hover { border-color: var(--green); color: var(--green); }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.article-nav a { min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); font-size: 13px; text-decoration: none; }
.article-nav a:last-child { text-align: right; }
.article-nav span { display: block; margin-bottom: 5px; color: var(--faint); font-size: 11px; }
.article-nav strong { display: block; overflow-wrap: anywhere; }
.comments { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }

/* Project overview scene */
.build-matrix-hero { min-height: 650px; position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid #2b332f; background: #0b0e0d; color: #e8eee9; }
.build-matrix-hero-inner { min-height: 562px; position: relative; z-index: 3; display: flex; align-items: center; padding-block: 74px 52px; pointer-events: none; }
.build-matrix-intro { width: min(520px, 43%); min-width: 0; pointer-events: auto; }
.build-matrix-intro .section-kicker { color: #e6ff4a; }
.build-matrix-intro h1 { max-width: 520px; margin: 0; font-size: 60px; line-height: 1.08; }
.build-matrix-intro > p:not(.section-kicker) { max-width: 520px; margin: 22px 0 0; color: #aab5af; font-size: 16px; line-height: 1.85; }
.matrix-live-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 30px; color: #8f9b95; font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; }
.matrix-live-status span { width: 8px; height: 8px; border: 1px solid currentColor; background: transparent; }
.matrix-live-status.is-ready { color: #63d8d0; }
.matrix-live-status.is-ready span { background: currentColor; animation: matrixSignal 2.8s ease-in-out infinite; }
.matrix-live-status.is-partial { color: #ff9a52; }

.matrix-board { min-width: 0; position: absolute; z-index: 0; inset: 0 0 88px; overflow: hidden; background: #0b0e0d; }
.matrix-scene-canvas { width: 100%; height: 100%; display: block; touch-action: pan-y; }
.matrix-scene-canvas.is-project-hovered { cursor: pointer; }
.matrix-scene-shade { width: 47%; position: absolute; z-index: 1; inset: 0 auto 0 0; background: rgba(11, 14, 13, .78); pointer-events: none; }
.matrix-board-head, .matrix-board-axis { min-height: 38px; position: absolute; z-index: 4; right: max(20px, calc((100% - 1180px) / 2)); left: max(20px, calc((100% - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; color: #7f8a84; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; pointer-events: none; }
.matrix-board-head { top: 18px; border-bottom: 1px solid rgba(99, 216, 208, .18); }
.matrix-board-head i, .matrix-board-head b { font: inherit; }
.matrix-board-head i { color: #63d8d0; }
.matrix-board-axis { bottom: 0; border-top: 1px solid rgba(99, 216, 208, .18); }
.matrix-board-axis span:nth-child(2) { color: #63d8d0; }
.matrix-scene-controls { position: absolute; z-index: 6; top: 72px; right: max(20px, calc((100% - 1180px) / 2)); display: flex; gap: 6px; }
.matrix-scene-controls button { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 1px solid #34403a; border-radius: 4px; background: rgba(16, 21, 19, .88); color: #aab5af; cursor: pointer; }
.matrix-scene-controls button:hover, .matrix-scene-controls button:focus-visible, .matrix-scene-controls button[aria-pressed="true"] { border-color: #63d8d0; color: #63d8d0; outline: 0; }
.matrix-scene-controls button span { font-family: "Cascadia Code", Consolas, monospace; font-size: 15px; line-height: 1; }
.matrix-projects { width: min(620px, 52vw); min-height: 326px; position: absolute; z-index: 3; top: 116px; right: max(20px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(96px, 1fr); gap: 1px; padding: 1px; background: #27302c; }
.matrix-projects[data-count="1"] { grid-template-columns: 1fr; }
.matrix-projects[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.matrix-projects[data-count="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.matrix-projects[data-count="1"] .matrix-project { padding: 24px; }
.matrix-projects[data-count="1"] .matrix-project strong { font-size: 20px; white-space: normal; }
.matrix-loading { grid-column: 1 / -1; display: grid; min-height: 220px; place-items: center; background: #101513; color: #7f8a84; font-size: 12px; }
.matrix-project { position: relative; min-width: 0; min-height: 96px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 12px; overflow: hidden; padding: 13px; border: 0; background: #151a18; color: #dfe7e1; text-align: left; cursor: pointer; animation: matrixEnter .42s ease both; }
.matrix-project::before { content: ""; width: 36px; height: 3px; position: absolute; top: 0; left: 13px; background: var(--project-accent); transform-origin: left; transition: width .2s ease; }
.matrix-project::after { content: ""; width: 14px; height: 14px; position: absolute; right: 10px; bottom: 10px; border-right: 1px solid var(--project-accent); border-bottom: 1px solid var(--project-accent); opacity: .35; }
.matrix-project:hover, .matrix-project.is-selected { z-index: 1; background: #1c2420; outline: 1px solid var(--project-accent); outline-offset: -1px; }
.matrix-project:hover::before, .matrix-project.is-selected::before { width: calc(100% - 26px); }
.matrix-project-number { color: var(--project-accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.matrix-project strong { width: 100%; overflow: hidden; font-size: 13px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.matrix-project-stage { color: #7f8a84; font-size: 10px; }

.matrix-board.is-webgl-ready .matrix-projects { width: auto; min-height: 0; inset: 0; display: block; padding: 0; background: transparent; pointer-events: none; }
.matrix-board.is-webgl-ready .matrix-loading { min-height: 0; position: absolute; top: 50%; right: 12%; padding: 10px 14px; background: rgba(11, 14, 13, .72); }
.matrix-board.is-webgl-ready .matrix-project { width: 148px; min-height: 56px; position: absolute; left: var(--scene-x, 72%); top: var(--scene-y, 50%); display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 2px 8px; padding: 8px 10px; border: 1px solid rgba(99, 216, 208, .34); border-left: 2px solid var(--project-accent); border-radius: 4px; transform: translate(-50%, -50%); background: rgba(10, 16, 14, .94); box-shadow: 0 10px 24px rgba(0, 0, 0, .28), inset 0 0 18px rgba(99, 216, 208, .035); backdrop-filter: blur(9px); pointer-events: auto; animation: none; }
.matrix-board.is-webgl-ready .matrix-project::before, .matrix-board.is-webgl-ready .matrix-project::after { display: none; }
.matrix-board.is-webgl-ready .matrix-project:hover, .matrix-board.is-webgl-ready .matrix-project.is-selected { background: rgba(24, 34, 30, .94); outline: 1px solid var(--project-accent); }
.matrix-board.is-webgl-ready .matrix-projects.has-selection .matrix-project:not(.is-selected) { opacity: .3; }
.matrix-board.is-webgl-ready .matrix-projects.has-selection .matrix-project:not(.is-selected):hover, .matrix-board.is-webgl-ready .matrix-projects.has-selection .matrix-project:not(.is-selected):focus-visible { opacity: 1; }
.matrix-board.is-webgl-ready .matrix-project-number { grid-row: 1; }
.matrix-board.is-webgl-ready .matrix-project strong { grid-column: 2; font-size: 11px; white-space: normal; }
.matrix-board.is-webgl-ready .matrix-project-stage { grid-column: 2; font-size: 9px; }
@media (min-width: 761px) {
  .matrix-board.is-webgl-ready .matrix-project.is-orbit-left::after,
  .matrix-board.is-webgl-ready .matrix-project.is-orbit-right::after { content: ""; width: 18px; height: 1px; display: block; position: absolute; top: 50%; bottom: auto; border: 0; background: var(--project-accent); opacity: .55; }
  .matrix-board.is-webgl-ready .matrix-project.is-orbit-left::after { right: -18px; }
  .matrix-board.is-webgl-ready .matrix-project.is-orbit-right::after { right: auto; left: -18px; }
}
.matrix-board:fullscreen { inset: 0; width: 100%; height: 100%; background: #0b0e0d; }
.matrix-board:fullscreen .matrix-scene-shade { display: none; }

.build-telemetry { min-height: 88px; position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #2b332f; background: rgba(11, 14, 13, .94); }
.build-telemetry > div { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 16px 20px; border-right: 1px solid #2b332f; }
.build-telemetry > div:last-child { border-right: 0; }
.build-telemetry strong { color: #e8eee9; font-family: "Cascadia Code", Consolas, monospace; font-size: 24px; line-height: 1; }
.build-telemetry span { margin-top: 7px; color: #78847e; font-size: 11px; }

.project-index-band { padding-block: 66px; border-bottom: 1px solid var(--line); background: var(--surface); }
.project-index-head, .build-stories-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.project-index-head h2, .build-stories-head h2 { margin: 0; font-size: 32px; line-height: 1.3; }
.project-filter-label { display: grid; gap: 6px; color: var(--faint); font-size: 11px; }
.project-filter-label select { width: 210px; height: 42px; padding-inline: 12px 34px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--ink); }
.project-filter-label select:focus { border-color: var(--cyan); outline: 2px solid color-mix(in srgb, var(--cyan) 18%, transparent); }
.project-index { border-top: 1px solid var(--line); }
.project-index-state { min-height: 150px; display: grid; place-items: center; color: var(--muted); }
.project-index-row { width: 100%; min-height: 104px; position: relative; display: grid; grid-template-columns: 52px 92px minmax(0, 1fr) 100px 28px; align-items: center; gap: 18px; padding: 12px 8px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.project-index-row::before { content: ""; width: 3px; height: 28px; position: absolute; background: var(--project-accent); opacity: 0; transition: opacity .18s ease, height .18s ease; }
.project-index-row:hover, .project-index-row.is-selected { background: var(--surface-2); }
.project-index-row:hover::before, .project-index-row.is-selected::before { height: 48px; opacity: 1; }
.project-index-number { padding-left: 14px; color: var(--project-accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; }
.project-index-media { width: 92px; aspect-ratio: 16 / 10; position: relative; display: block; overflow: hidden; border: 1px solid color-mix(in srgb, var(--project-accent) 38%, var(--line)); background: #111614; }
.project-index-media::before, .project-index-media::after { content: ""; position: absolute; z-index: 1; background: var(--project-accent); opacity: .62; pointer-events: none; }
.project-index-media::before { width: 18px; height: 2px; top: 7px; left: 7px; }
.project-index-media::after { width: 2px; height: 14px; right: 7px; bottom: 7px; }
.project-index-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .28s ease, opacity .28s ease; }
.project-index-row:hover .project-index-media img, .project-index-row.is-selected .project-index-media img { transform: scale(1.04); }
.project-index-media.is-empty { background: #131917; }
.project-index-media.is-empty::before { width: 42%; top: 42%; left: 12%; box-shadow: 14px 7px 0 color-mix(in srgb, var(--project-accent) 62%, transparent), 28px 14px 0 color-mix(in srgb, var(--project-accent) 34%, transparent); }
.project-index-copy { display: block; min-width: 0; }
.project-index-copy strong { display: block; font-size: 17px; }
.project-index-copy small { display: block; margin-top: 4px; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.project-index-stage { color: var(--faint); font-size: 11px; }
.project-index-arrow { color: var(--project-accent); font-size: 18px; }

.project-focus-band { border-bottom: 1px solid color-mix(in srgb, var(--project-accent) 45%, var(--line)); background: var(--surface-2); }
.project-focus-inner { display: grid; grid-template-columns: .7fr 1.05fr .75fr; gap: 26px 48px; align-items: start; padding-block: 38px; border-left: 4px solid var(--project-accent); padding-left: 26px; }
.project-focus-inner h2 { margin: 0; font-size: 30px; }
.project-focus-inner > p { margin: 0; color: var(--muted); line-height: 1.8; }
.project-focus-meta { grid-column: 1 / 3; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--faint); font-size: 11px; }
.project-focus-meta span:first-child { color: var(--project-accent); font-weight: 800; }
.project-focus-latest { display: grid; gap: 5px; }
.project-focus-latest small { color: var(--faint); font-size: 10px; }
.project-focus-latest strong { color: var(--ink); font-size: 13px; line-height: 1.5; }
.project-focus-latest time { color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.project-stage-command { justify-self: end; color: var(--project-accent); font-size: 12px; font-weight: 800; text-decoration: none; }
.project-stage-command:hover { text-decoration: underline; }

.featured-build-band { padding-block: 78px; border-bottom: 1px solid #2b332f; background: #0f1311; color: #e8eee9; }
.featured-build-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: start; }
.featured-build-visual { width: 100%; min-width: 0; min-height: 0; aspect-ratio: 16 / 10; position: relative; overflow: hidden; border: 1px solid #34403a; background: #0b0e0d; }
.featured-build-media { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: contain; background: #0b0e0d; opacity: 0; transition: opacity .28s ease; }
.featured-build-visual.has-media .featured-build-media { opacity: 1; }
.featured-build-frame { position: absolute; z-index: 3; inset: 12px; border-top: 1px solid rgba(99, 216, 208, .35); border-left: 1px solid rgba(99, 216, 208, .35); pointer-events: none; }
.featured-build-frame::before, .featured-build-frame::after { content: ""; position: absolute; background: #63d8d0; }
.featured-build-frame::before { width: 36px; height: 2px; right: 0; bottom: 0; }
.featured-build-frame::after { width: 2px; height: 36px; right: 0; bottom: 0; }
.featured-build-signal { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 28px; background: #151a18; transition: background-color .25s ease; }
.featured-build-signal::before, .featured-build-signal::after { content: ""; position: absolute; background: #2b3530; }
.featured-build-signal::before { width: 1px; top: 0; bottom: 0; left: 34%; }
.featured-build-signal::after { height: 1px; left: 0; right: 0; top: 60%; }
.featured-build-signal span { position: relative; z-index: 1; color: #63d8d0; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.featured-build-signal strong { position: relative; z-index: 1; max-width: 80%; overflow-wrap: anywhere; color: #e6ff4a; font-size: 38px; line-height: 1.05; }
.featured-build-signal i { width: 28%; height: 7px; position: absolute; right: 8%; background: #63d8d0; opacity: .78; }
.featured-build-signal i:nth-of-type(1) { top: 24%; }
.featured-build-signal i:nth-of-type(2) { top: 31%; width: 18%; background: #ff5c8a; }
.featured-build-signal i:nth-of-type(3) { top: 38%; width: 10%; background: #ff9a52; }
.featured-build-visual.has-media .featured-build-signal { justify-content: flex-end; background: transparent; pointer-events: none; }
.featured-build-visual.has-media .featured-build-signal::before, .featured-build-visual.has-media .featured-build-signal::after, .featured-build-visual.has-media .featured-build-signal i, .featured-build-visual.has-media .featured-build-signal span { display: none; }
.featured-build-visual.has-media .featured-build-signal strong { max-width: min(70%, 420px); padding: 9px 12px; background: rgba(11, 14, 13, .88); color: #e8eee9; font-size: 18px; }
.featured-build-copy { min-width: 0; align-self: center; }
.featured-build-copy-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.featured-build-copy .section-kicker { color: #e6ff4a; }
.featured-build-copy-head > span { color: #63d8d0; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.featured-build-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0 0 12px; color: #7f8a84; font-size: 11px; }
.featured-build-meta span:first-child { color: #63d8d0; font-family: "Cascadia Code", Consolas, monospace; }
.featured-build-copy h2 { max-width: 620px; margin: 0; font-size: 36px; line-height: 1.28; }
.featured-build-copy > p:last-of-type { max-width: 650px; margin: 20px 0 0; color: #aab5af; font-size: 15px; line-height: 1.9; white-space: pre-line; }
.featured-build-copy .text-link { display: inline-block; margin-top: 24px; color: #63d8d0; }
.featured-build-queue { margin-top: 30px; border-top: 1px solid #2b3530; }
.featured-build-queue-item { width: 100%; min-height: 74px; display: grid; grid-template-columns: 30px minmax(0, 1fr) 72px; align-items: center; gap: 12px; padding: 10px 0 10px 10px; border: 0; border-bottom: 1px solid #2b3530; border-left: 2px solid transparent; background: transparent; color: #e8eee9; text-align: left; cursor: pointer; }
.featured-build-queue-item:hover, .featured-build-queue-item.is-active { border-left-color: #63d8d0; background: #151a18; }
.featured-queue-index { color: #63d8d0; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.featured-queue-copy { min-width: 0; display: block; }
.featured-queue-copy strong, .featured-queue-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.featured-queue-copy strong { font-size: 12px; line-height: 1.5; }
.featured-queue-copy small { margin-top: 3px; color: #78847e; font-size: 9px; }
.featured-queue-media { width: 72px; aspect-ratio: 16 / 10; position: relative; display: block; overflow: hidden; border: 1px solid #34403a; background: #101513; }
.featured-queue-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.featured-queue-media.is-empty::before, .featured-queue-media.is-empty::after { content: ""; position: absolute; background: #63d8d0; opacity: .7; }
.featured-queue-media.is-empty::before { width: 32px; height: 2px; top: 15px; left: 10px; }
.featured-queue-media.is-empty::after { width: 18px; height: 2px; top: 23px; left: 24px; background: #ff5c8a; }

.build-stories-section { padding-block: 68px 130px; }
.build-tier-control { display: inline-flex; border-bottom: 1px solid var(--line); }
.build-tier-control button { min-height: 40px; padding: 0 14px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; }
.build-tier-control button:hover { color: var(--ink); }
.build-tier-control button.is-active { border-bottom-color: var(--cyan); color: var(--ink); font-weight: 800; }
.project-updates-feed { max-width: 980px; border-top: 1px solid var(--line); }
.project-update { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 34px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.project-update-date { display: flex; flex-direction: column; color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.project-update-date strong { color: var(--ink); font-size: 18px; font-weight: 500; }
.project-update-date span { margin-top: 3px; }
.project-update-body { min-width: 0; }
.project-update-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-bottom: 9px; color: var(--cyan); font-size: 11px; font-weight: 700; }
.project-update-tier { padding: 2px 6px; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); font-weight: 500; }
.tier-featured { border-color: color-mix(in srgb, var(--cyan) 55%, var(--line)); color: var(--cyan); }
.tier-case_study { border-color: color-mix(in srgb, var(--signal) 60%, var(--line)); color: var(--signal); }
.project-update-body h2 { margin: 0; font-size: 24px; line-height: 1.4; }
.project-update-body > p { max-width: 760px; margin: 11px 0 0; color: var(--muted); line-height: 1.8; white-space: pre-line; }
.project-update-media { width: min(760px, 100%); aspect-ratio: 16 / 9; display: block; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 4px; object-fit: cover; background: var(--surface-2); }
.project-update-highlights { display: grid; gap: 7px; margin: 17px 0 0; padding: 0; list-style: none; }
.project-update-highlights li { position: relative; padding-left: 17px; color: var(--ink); font-size: 13px; line-height: 1.65; }
.project-update-highlights li::before { content: ""; width: 6px; height: 6px; position: absolute; top: .62em; left: 0; background: var(--cyan); }
.project-update-link { display: inline-block; margin-top: 18px; }
.project-updates-state { min-height: 220px; display: grid; place-items: center; align-content: center; gap: 14px; border-bottom: 1px solid var(--line); color: var(--muted); text-align: center; }
.project-updates-state.is-error { color: var(--orange); }
.project-updates-retry { min-height: 38px; margin-top: 14px; padding-inline: 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--ink); cursor: pointer; }
.project-updates-retry:hover { border-color: var(--cyan); color: var(--cyan); }

/* Single project stage */
.project-stage-page { display: none; background: var(--paper); }
html[data-build-view="project"] .build-matrix-overview { display: none; }
html[data-build-view="project"] .project-stage-page { display: block; }
.project-product-hero { min-height: 620px; position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid #2b332f; background: #0b0e0d; color: #e8eee9; }
.project-product-hero::after { content: ""; width: 58%; position: absolute; z-index: 1; inset: 0 auto 0 0; background: rgba(11, 14, 13, .78); pointer-events: none; }
.project-product-media { width: 100%; height: 100%; position: absolute; z-index: 0; inset: 0; object-fit: contain; object-position: 70% 50%; background: #0b0e0d; }
.project-product-signal { width: min(720px, 52vw); height: 72%; position: absolute; z-index: 0; right: max(20px, calc((100% - 1180px) / 2)); bottom: 8%; border: 1px solid color-mix(in srgb, var(--project-accent) 42%, #25312c); transform: perspective(920px) rotateX(58deg) rotateZ(-4deg); transform-origin: center; }
.project-product-signal::before, .project-product-signal::after { content: ""; position: absolute; background: color-mix(in srgb, var(--project-accent) 34%, #25312c); }
.project-product-signal::before { width: 1px; top: 0; bottom: 0; left: 50%; }
.project-product-signal::after { height: 1px; top: 50%; right: 0; left: 0; }
.project-product-signal span { position: absolute; border: 1px solid var(--project-accent); background: color-mix(in srgb, var(--project-accent) 12%, #101513); box-shadow: 0 0 20px color-mix(in srgb, var(--project-accent) 14%, transparent); }
.project-product-signal span:nth-child(1) { width: 28%; height: 22%; top: 15%; left: 14%; }
.project-product-signal span:nth-child(2) { width: 34%; height: 28%; top: 22%; right: 10%; }
.project-product-signal span:nth-child(3) { width: 38%; height: 25%; bottom: 12%; left: 25%; }
.project-product-signal span:nth-child(4) { width: 15%; height: 12%; right: 11%; bottom: 18%; border-color: #ff9a52; }
.project-product-hero.has-product-media .project-product-signal { display: none; }
.project-product-hero-inner { min-height: 620px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 76px 60px; }
.project-stage-back { position: absolute; top: 34px; color: #8f9b95; font-size: 11px; text-decoration: none; }
.project-stage-back:hover { color: var(--project-accent); }
.project-product-hero .section-kicker { color: var(--project-accent); }
.project-product-hero h1 { max-width: 680px; margin: 0; font-size: 64px; line-height: 1.08; overflow-wrap: anywhere; }
.project-product-hero-inner > p:not(.section-kicker) { max-width: 650px; margin: 23px 0 0; color: #b1bab5; font-size: 17px; line-height: 1.85; }
.project-stage-meta { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 27px; color: #8f9b95; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.project-stage-meta span:first-child { color: var(--project-accent); }
.project-stage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.project-stage-tags span { padding: 3px 7px; border: 1px solid #34403a; border-radius: 3px; color: #9eaaa3; font-size: 10px; }
.project-product-command { margin-top: 24px; padding: 10px 14px; border: 1px solid var(--project-accent); border-radius: 4px; color: var(--project-accent); font-size: 12px; font-weight: 800; text-decoration: none; }
.project-product-command:hover { background: var(--project-accent); color: #0b0e0d; }

.project-proof-band { border-bottom: 1px solid #2b332f; background: #101513; color: #e8eee9; }
.project-proof-grid { min-height: 92px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-proof-grid > div { display: flex; flex-direction: column; justify-content: center; padding: 16px 20px; border-right: 1px solid #2b332f; }
.project-proof-grid > div:last-child { border-right: 0; }
.project-proof-grid strong { font-family: "Cascadia Code", Consolas, monospace; font-size: 22px; line-height: 1; }
.project-proof-grid span { margin-top: 8px; color: #7f8a84; font-size: 10px; }

.project-origin-band { padding-block: 86px; border-bottom: 1px solid var(--line); background: var(--surface); }
.project-origin-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.project-origin-layout h2, .project-stage-section-head h2, .project-archive-layout h2, .project-case-layout h2 { margin: 0; font-size: 34px; line-height: 1.25; }
.project-origin-copy { max-width: 720px; }
.project-origin-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; }
.project-origin-copy strong { display: block; margin-top: 22px; padding-left: 18px; border-left: 3px solid var(--project-accent); color: var(--ink); font-size: 15px; line-height: 1.8; }

.project-media-band { padding-block: 82px 96px; border-bottom: 1px solid #2b332f; background: #101513; color: #e8eee9; }
.project-media-gallery { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.project-media-shot { min-width: 0; margin: 0; overflow: hidden; border: 1px solid #303b36; border-radius: 4px; background: #0b0e0d; }
.project-media-shot.is-primary { grid-row: span 2; }
.project-media-shot img { width: 100%; height: min(36vw, 560px); display: block; object-fit: contain; background: #0b0e0d; }
.project-media-shot:not(.is-primary) img { height: 256px; object-fit: cover; }
.project-media-shot figcaption { min-height: 42px; display: flex; align-items: center; padding: 9px 12px; border-top: 1px solid #303b36; color: #a9b4ae; font-size: 11px; line-height: 1.5; }

.project-capabilities-band { padding-block: 82px 92px; border-bottom: 1px solid var(--line); }
.project-stage-section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.project-stage-section-head > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 12px; }
.project-capabilities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.project-capabilities article { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); border-top: 3px solid var(--project-accent); border-radius: 6px; background: var(--surface); }
.project-capabilities article span { color: var(--project-accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.project-capabilities article p { margin: 28px 0 0; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.75; }

.project-achievements-band { padding-block: 88px 100px; border-bottom: 1px solid #2b332f; background: #0f1311; color: #e8eee9; }
.project-achievements { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1px; background: #2b332f; }
.project-achievement { min-height: 230px; padding: 28px; background: #151a18; }
.project-achievement.is-primary { grid-row: span 2; min-height: 461px; display: flex; flex-direction: column; justify-content: center; }
.project-achievement:only-child { grid-column: 1 / -1; grid-row: auto; min-height: 340px; }
.project-achievements[data-count="2"] .project-achievement { min-height: 360px; }
.project-achievements[data-count="2"] .project-achievement.is-primary { grid-row: auto; }
.project-achievement-meta { color: var(--project-accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.project-achievement h3 { max-width: 680px; margin: 16px 0 0; font-size: 24px; line-height: 1.4; }
.project-achievement.is-primary h3 { font-size: 36px; }
.project-achievement p { max-width: 680px; margin: 15px 0 0; color: #aab5af; line-height: 1.85; white-space: pre-line; }
.project-achievement > a { display: inline-block; margin-top: 20px; color: var(--project-accent); font-size: 12px; }

.project-archive-band { padding-block: 82px; border-bottom: 1px solid var(--line); background: var(--surface); }
.project-archive-layout, .project-case-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.project-archive { border-top: 1px solid var(--line); }
.project-archive summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--ink); font-size: 13px; font-weight: 800; list-style: none; }
.project-archive summary::-webkit-details-marker { display: none; }
.project-archive summary::after { content: "+"; color: var(--project-accent); font-size: 18px; }
.project-archive[open] summary::after { content: "−"; }
.project-archive article { padding: 24px 0; border-top: 1px solid var(--line); }
.project-archive time { color: var(--faint); font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.project-archive h3 { margin: 8px 0 0; font-size: 18px; }
.project-archive p { margin: 9px 0 0; color: var(--muted); line-height: 1.8; }

.project-case-band { padding-block: 82px 140px; background: var(--paper); }
.project-case-links { border-top: 1px solid var(--line); }
.project-case-links > a { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px 8px; border-bottom: 1px solid var(--line); text-decoration: none; }
.project-case-links > a:hover { background: var(--surface-2); }
.project-case-links strong, .project-case-links small { display: block; }
.project-case-links strong { font-size: 15px; }
.project-case-links small { margin-top: 4px; color: var(--faint); font-size: 10px; }
.project-case-links i { color: var(--project-accent); font-size: 20px; font-style: normal; }
.project-stage-loading { min-height: 150px; display: grid; grid-column: 1 / -1; place-items: center; border: 1px solid var(--line); color: var(--muted); font-size: 12px; text-align: center; }
.project-stage-error { padding-block: 90px 150px; }
.project-stage-error .shell { padding: 30px 0; border-top: 1px solid var(--line); }
.project-stage-error a { color: var(--project-accent); }

@keyframes matrixEnter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes matrixSignal { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* About */
.about-hero { position: relative; min-height: min(640px, calc(100svh - 88px)); overflow: hidden; border-bottom: 1px solid #2b332f; background: #0d1210; color: #f2f6f3; }
.about-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .66; }
.about-hero-shade { position: absolute; inset: 0; background: rgba(6, 10, 8, .76); }
.about-hero-inner { min-height: inherit; position: relative; z-index: 1; display: flex; align-items: center; padding-block: 70px 86px; }
.about-identity { width: min(760px, 100%); }
.about-person { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.about-avatar { width: 48px; height: 48px; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; background: #17201b; object-fit: cover; }
.about-positioning { color: var(--lime); font-size: 12px; font-weight: 800; }
.about-hero h1 { max-width: 760px; margin: 0; font-size: 72px; line-height: 1.08; text-wrap: balance; }
.about-lead { max-width: 700px; margin: 20px 0 28px; color: rgba(242, 246, 243, .84); font-size: 18px; line-height: 1.85; }
.about-hero-proof { min-height: 68px; display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 2px 14px; align-items: baseline; margin: 30px 0 0; padding-left: 14px; border-left: 2px solid var(--cyan); }
.about-hero-proof span { color: rgba(255, 255, 255, .58); font-size: 11px; }
.about-hero-proof strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.about-hero-proof small { grid-column: 2; display: -webkit-box; max-width: 540px; overflow: hidden; color: rgba(255, 255, 255, .7); font-size: 11px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.about-intro-band { padding-block: 86px; border-bottom: 1px solid var(--line); background: var(--surface); }
.about-intro-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 90px; align-items: start; }
.about-intro-layout .section-kicker { margin-bottom: 9px; }
.about-intro-layout h2 { max-width: 430px; margin: 0; font-size: 38px; line-height: 1.3; }
.about-intro-layout > p { max-width: 720px; margin: 3px 0 0; color: var(--muted); font-size: 18px; line-height: 2; }

.about-method { padding-block: 88px; }
.about-method-head { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(300px, .8fr); gap: 80px; align-items: end; margin-bottom: 34px; }
.about-method-head .section-kicker { margin-bottom: 9px; }
.about-method-head h2 { max-width: 620px; margin: 0; font-size: 38px; line-height: 1.3; }
.about-method-head > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.about-method-list { border-top: 1px solid var(--line); }
.about-method-step { min-height: 104px; display: grid; grid-template-columns: 72px 270px minmax(0, 1fr); gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.about-method-step > span { color: var(--cyan); font-family: "Cascadia Code", Consolas, monospace; font-size: 11px; font-weight: 800; }
.about-method-step:nth-child(2) > span { color: var(--orange); }
.about-method-step:nth-child(3) > span { color: var(--magenta); }
.about-method-step:nth-child(4) > span { color: var(--green); }
.about-method-step h3 { margin: 0; font-size: 20px; }
.about-method-step p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.about-pillars { padding-block: 88px; border-block: 1px solid #2b332f; background: #0d1210; color: #eef3ef; }
.about-pillars .section-kicker { color: var(--lime); }
.about-pillars-head h2 { max-width: 640px; margin: 0; font-size: 38px; line-height: 1.3; }
.about-pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 38px; border-block: 1px solid #343c37; }
.about-pillar-grid article { min-height: 236px; padding: 30px 32px 32px 0; border-right: 1px solid #343c37; }
.about-pillar-grid article + article { padding-left: 32px; }
.about-pillar-grid article:last-child { border-right: 0; }
.about-pillar-grid span { color: #63d8d0; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; }
.about-pillar-grid article:nth-child(2) span { color: #ff9a52; }
.about-pillar-grid article:nth-child(3) span { color: #ff5c8a; }
.about-pillar-grid h3 { margin: 38px 0 12px; font-size: 21px; line-height: 1.45; }
.about-pillar-grid p { margin: 0; color: #aeb8b1; font-size: 13px; line-height: 1.8; }

.about-projects { padding-block: 88px; background: var(--surface); }
.about-project-fallback { min-height: 104px; display: flex; align-items: center; margin: 0; padding-block: 24px; border-block: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.about-project-fallback a { margin-inline: .35em; color: var(--green); font-weight: 800; }

.about-notes { padding-block: 88px; border-top: 1px solid var(--line); }
.about-notes-layout { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); gap: 78px; align-items: start; }
.about-notes h2 { margin: 0; font-size: 34px; }
.about-notes-layout > div > p:last-child { max-width: 420px; margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.about-source-notes { border-block: 1px solid var(--line); }
.about-source-notes summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); font-size: 14px; font-weight: 800; cursor: pointer; list-style: none; }
.about-source-notes summary::-webkit-details-marker { display: none; }
.about-source-notes summary span { color: var(--green); font-size: 22px; font-weight: 400; transition: transform .18s ease; }
.about-source-notes[open] summary span { transform: rotate(45deg); }
.about-source-content { padding: 34px 0 54px; border-top: 1px solid var(--line); }
.about-source-content h1 { font-size: 31px; }
.about-source-content h2 { font-size: 26px; }

.about-closing { border-top: 1px solid #2b332f; background: #151816; color: #eef3ef; }
.about-closing-inner { min-height: 160px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.about-closing p { max-width: 720px; margin: 0; font-size: 21px; line-height: 1.65; }
.about-closing-inner > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 24px; }
.about-closing a { color: #63d8d0; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.about-closing a:hover { color: var(--lime); }

/* Author and errors */
.author-profile { display: flex; align-items: center; gap: 20px; }
.author-avatar { width: 76px; height: 76px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; background: var(--surface-2); }
.author-mark { display: grid; flex: 0 0 auto; place-items: center; color: var(--green); font-size: 26px; font-weight: 900; }
.error-page { min-height: calc(100vh - 160px); display: grid; place-items: center; padding-block: 70px; text-align: center; }
.error-code { margin: 0; color: var(--green); font-size: 92px; line-height: 1; }
.error-page h1 { margin: 18px 0 8px; font-size: 32px; }
.error-page p { max-width: 560px; margin: 0 auto 24px; color: var(--muted); }
.error-page .button { border-color: var(--green); background: var(--green); color: var(--surface); }

/* Footer */
.site-footer { padding-block: 30px; border-top: 1px solid #323733; background: #151816; color: #99a19b; font-size: 12px; }
.site-footer a { color: #d5dbd6; text-decoration: none; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer-records { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-records a:hover { text-decoration: underline; }
.footer-slogan { color: #aeb6b0; }

@media (max-width: 960px) {
  .home-hero-inner { grid-template-columns: minmax(250px, .72fr) minmax(390px, 1.28fr); gap: 24px; }
  .home-hero h1 { font-size: 50px; }
  .home-product-stage { width: min(620px, 56vw); }
  .home-project-orbit { right: -260px; }
  .about-hero h1 { font-size: 56px; }
  .about-intro-layout, .about-method-head { gap: 48px; }
  .about-method-step { grid-template-columns: 58px 220px minmax(0, 1fr); gap: 18px; }
  .about-pillar-grid article { padding-right: 22px; }
  .about-pillar-grid article + article { padding-left: 22px; }
  .about-notes-layout { gap: 48px; }
  .home-section-head { grid-template-columns: minmax(0, 1fr) auto; }
  .home-section-head > p { grid-column: 1 / -1; grid-row: 2; }
  .home-project-grid { gap: 12px; }
  .home-writing-grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); }
  .home-statement-inner { grid-template-columns: 130px minmax(0, 1fr); }
  .home-statement a { grid-column: 2; justify-self: start; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .post-grid { grid-template-columns: 1fr; }
  .taxonomy-grid { grid-template-columns: 1fr 1fr; }
  .article-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); gap: 36px; }
  .article-hero h1 { font-size: 42px; }
  .article-project-card { grid-template-columns: minmax(0, 1fr) minmax(240px, 36%); gap: 18px; }
  .article-reading-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 38px; }
  .build-matrix-intro { width: 46%; }
  .build-matrix-intro h1 { font-size: 48px; }
  .matrix-projects { width: 50vw; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-build-layout { gap: 34px; }
  .project-product-hero h1 { font-size: 52px; }
  .project-product-signal { width: 58vw; }
  .project-origin-layout, .project-archive-layout, .project-case-layout { gap: 44px; }
}

@media (max-width: 760px) {
  .shell, .article-shell, .article-reading-shell { width: min(calc(100% - 28px), 1180px); }
  .site-header .shell, .home-page .shell { width: min(calc(100% - 28px), 1180px); }
  .nav { min-height: 64px; }
  .nav-panel {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav-panel.is-open { display: block; }
  .nav-links { width: min(calc(100% - 28px), 1180px); margin-inline: auto; flex-direction: column; align-items: stretch; gap: 0; padding-block: 8px 14px; }
  .nav-links a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .menu-toggle { display: grid; }
  .home-hero { height: auto; min-height: 0; }
  .home-hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 26px; padding-block: 36px 30px; }
  .home-hero h1 { font-size: 42px; }
  .home-hero-copy { font-size: 15px; }
  .home-product-stage { width: min(100%, 560px); justify-self: center; }
  .home-project-orbit { width: 360px; right: -210px; }
  .home-stage-window { box-shadow: 0 18px 46px rgba(0, 0, 0, .3); }
  .about-hero { min-height: min(600px, calc(100svh - 72px)); }
  .about-hero-inner { padding-block: 52px 68px; }
  .about-hero h1 { font-size: 43px; }
  .about-lead { font-size: 16px; line-height: 1.75; }
  .about-intro-band, .about-method, .about-pillars, .about-projects, .about-notes { padding-block: 62px; }
  .about-intro-layout, .about-method-head, .about-notes-layout { grid-template-columns: 1fr; gap: 24px; }
  .about-intro-layout h2, .about-method-head h2, .about-pillars-head h2 { font-size: 31px; }
  .about-intro-layout > p { font-size: 16px; line-height: 1.85; }
  .about-method-head { margin-bottom: 28px; }
  .about-method-step { grid-template-columns: 48px minmax(0, 1fr); gap: 4px 14px; padding-block: 20px; }
  .about-method-step p { grid-column: 2; margin-top: 6px; }
  .about-pillar-grid { grid-template-columns: 1fr; }
  .about-pillar-grid article, .about-pillar-grid article + article { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid #343c37; }
  .about-pillar-grid article:last-child { border-bottom: 0; }
  .about-pillar-grid h3 { margin-top: 18px; }
  .about-source-content { padding-bottom: 34px; }
  .about-closing-inner { min-height: 0; display: block; padding-block: 46px; }
  .about-closing p { font-size: 18px; }
  .about-closing-inner > div { justify-content: flex-start; margin-top: 22px; }
  .band { padding-block: 60px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 13px; }
  .home-section-head .section-action { display: inline-block; margin-top: 16px; }
  .home-project-grid { grid-template-columns: 1fr; }
  .home-projects .home-project-grid { grid-template-columns: 1fr; }
  .home-projects .home-project-card:nth-child(n) { grid-column: auto; margin-top: 0; }
  .home-project-card { display: grid; grid-template-columns: minmax(220px, 42%) minmax(0, 1fr); }
  .home-projects .home-project-card:nth-child(3) { grid-template-columns: minmax(220px, 42%) minmax(0, 1fr); }
  .home-project-media { height: 100%; min-height: 250px; aspect-ratio: auto; }
  .home-projects .home-project-card:nth-child(3) .home-project-media { min-height: 250px; }
  .home-projects .home-project-card:nth-child(3) .home-project-body { min-height: 250px; padding: 20px; }
  .home-project-body { min-height: 250px; }
  .home-writing-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .home-writing-card, .home-writing-card.is-primary { min-height: 240px; grid-row: auto; grid-template-columns: minmax(210px, 40%) minmax(0, 1fr); grid-template-rows: none; }
  .home-writing-card.is-primary.no-cover { grid-template-rows: none; }
  .home-writing-card.no-cover::before { min-height: 100%; }
  .home-writing-card.is-primary .home-writing-copy > strong { font-size: 21px; }
  .home-statement-inner { min-height: 0; grid-template-columns: 1fr; gap: 16px; padding-block: 42px; }
  .home-statement p:not(.section-kicker) { font-size: 17px; }
  .home-statement a { grid-column: auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:last-child:nth-child(odd) { grid-column: auto; }
  .project-body > p { min-height: 0; }
  .journal-list { grid-template-columns: 1fr; }
  .journal-entry:nth-child(odd) { border-right: 0; }
  .journal-entry:nth-child(even) { padding-left: 0; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 25px; }
  .manifesto h2 { font-size: 31px; }
  .page-hero { padding-block: 54px 35px; }
  .page-hero h1 { font-size: 37px; }
  .content-section { padding-block: 42px 62px; }
  .post-card { grid-template-columns: 36% 1fr; min-height: 210px; }
  .taxonomy-grid { grid-template-columns: 1fr; }
  .archive-year { grid-template-columns: 1fr; gap: 14px; }
  .archive-year > h2 { position: static; }
  .article-progress { top: 64px; }
  .article-hero-layout, .article-hero.no-cover .article-hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 34px; padding-block: 48px; }
  .article-hero h1 { font-size: 38px; }
  .article-hero-media { width: 100%; }
  .article-brief-inner { grid-template-columns: 1fr; gap: 8px; padding-block: 24px; }
  .article-brief-inner > p:last-child { font-size: 15px; }
  .article-context-header { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 24px 15px; }
  .article-project-card { grid-template-columns: 1fr; gap: 20px; }
  .article-project-media a.is-primary img { height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
  .article-reading-layout, .article-reading-layout.has-toc { grid-template-columns: 1fr; justify-content: stretch; gap: 38px; padding-block: 34px 68px; }
  .article-toc-panel { position: static; }
  .article-toc-toggle { display: inline-flex; }
  .article-toc nav { display: none; padding: 12px 0 6px; }
  .article-toc.is-open nav { display: block; }
  .article-toc a { padding-block: 9px; }
  .article-cover { height: 390px; }
  .article-header h1 { font-size: 36px; }
  .article-content-body { font-size: 16px; }
  .article-content-body h2, .article-content-body h3, .article-content-body h4 { scroll-margin-top: 80px; }
  .project-update { grid-template-columns: 100px minmax(0, 1fr); gap: 18px; }
  .build-matrix-hero { min-height: 644px; }
  .build-matrix-hero-inner { min-height: 500px; align-items: flex-start; padding-block: 56px 28px; }
  .build-matrix-intro { width: 100%; }
  .build-matrix-intro h1 { max-width: 600px; font-size: 42px; }
  .build-matrix-intro > p:not(.section-kicker) { max-width: 520px; margin-top: 16px; font-size: 14px; }
  .matrix-live-status { margin-top: 20px; }
  .matrix-board { bottom: 144px; }
  .matrix-scene-shade { width: 100%; height: 52%; inset: 0 0 auto; background: rgba(11, 14, 13, .86); }
  .matrix-board-head, .matrix-board-axis { right: 14px; left: 14px; }
  .matrix-board-head { top: 10px; }
  .matrix-projects { width: auto; min-height: 220px; top: auto; right: 14px; bottom: 48px; left: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(72px, 1fr); }
  .matrix-project { min-height: 72px; padding: 10px; }
  .matrix-scene-controls { top: auto; right: 14px; bottom: 138px; }
  .matrix-board.is-webgl-ready .matrix-projects { height: 78px; inset: auto 14px 46px; display: flex; gap: 8px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; pointer-events: auto; scrollbar-width: thin; }
  .matrix-board.is-webgl-ready .matrix-project { width: 150px; min-height: 66px; position: relative; flex: 0 0 150px; left: auto; top: auto; grid-template-columns: 24px minmax(0, 1fr); padding: 8px 10px; transform: none; scroll-snap-align: start; }
  .matrix-board.is-webgl-ready .matrix-projects[data-count="1"] .matrix-project { width: 100%; flex-basis: 100%; padding: 10px 12px; }
  .matrix-board.is-webgl-ready .matrix-projects[data-count="1"] .matrix-project strong { font-size: 12px; }
  .build-telemetry { grid-template-columns: 1fr 1fr; }
  .build-telemetry > div { min-height: 72px; border-bottom: 1px solid #2b332f; }
  .project-index-band { padding-block: 52px; }
  .project-index-head, .build-stories-head { display: block; }
  .project-filter-label { margin-top: 20px; }
  .project-filter-label select { width: 100%; }
  .project-index-row { grid-template-columns: 44px 80px minmax(0, 1fr) 72px 20px; gap: 10px; }
  .project-index-number { padding-left: 10px; }
  .project-index-media { width: 80px; }
  .project-focus-inner { grid-template-columns: 1fr; gap: 16px; }
  .project-focus-meta { grid-column: auto; }
  .project-stage-command { justify-self: start; }
  .featured-build-layout { grid-template-columns: 1fr; gap: 34px; }
  .featured-build-visual { min-height: 0; }
  .featured-build-copy h2 { font-size: 32px; }
  .build-tier-control { max-width: 100%; margin-top: 20px; overflow-x: auto; }
  .build-tier-control button { flex: 0 0 auto; }
  .project-product-hero, .project-product-hero-inner { min-height: 590px; }
  .project-product-hero::after { width: 100%; background: rgba(11, 14, 13, .72); }
  .project-product-hero-inner { justify-content: flex-start; padding-block: 86px 44px; }
  .project-stage-back { top: 26px; }
  .project-product-hero h1 { font-size: 44px; }
  .project-product-hero-inner > p:not(.section-kicker) { font-size: 15px; }
  .project-product-media { object-position: center 78%; opacity: .58; }
  .project-product-signal { width: calc(100% - 28px); height: 46%; right: 14px; bottom: 4%; opacity: .68; }
  .project-proof-grid { grid-template-columns: 1fr 1fr; }
  .project-proof-grid > div { min-height: 76px; border-bottom: 1px solid #2b332f; }
  .project-origin-band, .project-media-band, .project-capabilities-band, .project-achievements-band, .project-archive-band { padding-block: 62px; }
  .project-origin-layout, .project-archive-layout, .project-case-layout { grid-template-columns: 1fr; gap: 28px; }
  .project-stage-section-head { display: block; }
  .project-stage-section-head > p { margin-top: 12px; }
  .project-capabilities { grid-template-columns: 1fr; }
  .project-media-gallery { grid-template-columns: 1fr; }
  .project-media-shot.is-primary { grid-row: auto; }
  .project-media-shot img, .project-media-shot:not(.is-primary) img { height: auto; aspect-ratio: 16 / 10; object-fit: contain; }
  .project-capabilities article { min-height: 150px; }
  .project-achievements { grid-template-columns: 1fr; }
  .project-achievement, .project-achievement.is-primary, .project-achievement:only-child { min-height: 0; grid-row: auto; padding: 26px 20px; }
  .project-achievement.is-primary h3 { font-size: 30px; }
  .project-case-band { padding-block: 62px 140px; }
  .footer-row { display: block; }
  .footer-row > * { display: block; margin-top: 7px; }
  .footer-row > .footer-records { display: flex; }
}

@media (max-width: 520px) {
  .home-hero h1 { max-width: 100%; font-size: 34px; text-wrap: wrap; word-break: normal; }
  .home-positioning { font-size: 12px; }
  .home-hero-copy { margin-block: 14px 22px; line-height: 1.7; }
  .home-stage-bar { grid-template-columns: 62px minmax(0, 1fr) 28px; padding-inline: 12px; }
  .home-hero-project { min-height: 82px; grid-template-columns: 1fr; gap: 3px; padding: 12px; }
  .home-hero-project small { grid-column: auto; -webkit-line-clamp: 2; }
  .home-stage-switch { min-height: 48px; grid-template-columns: 22px minmax(0, 1fr); gap: 6px; padding-inline: 6px; }
  .home-stage-switch span { width: 21px; height: 21px; }
  .home-stage-switch strong { font-size: 9px; }
  .about-person { margin-bottom: 17px; }
  .about-avatar { width: 44px; height: 44px; }
  .about-hero h1 { font-size: 38px; }
  .about-lead { margin-top: 16px; }
  .about-hero-proof { grid-template-columns: 1fr; gap: 3px; margin-top: 24px; }
  .about-hero-proof small { grid-column: auto; }
  .about-method-step h3 { font-size: 18px; }
  .about-notes h2 { font-size: 29px; }
  .home-project-card { display: block; }
  .home-projects .home-project-card:nth-child(3) { display: block; }
  .home-project-media { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .home-projects .home-project-card:nth-child(3) .home-project-media { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .home-project-body { min-height: 218px; padding: 18px; }
  .home-writing-card, .home-writing-card.is-primary { min-height: 0; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-writing-media { aspect-ratio: 16 / 10; }
  .home-writing-copy { min-height: 220px; padding: 18px; }
  .home-writing-card.is-primary .home-writing-copy > strong { font-size: 20px; }
  .home-writing-card.no-cover::before { min-height: 92px; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .section-head h2 { font-size: 28px; }
  .journal-entry { grid-template-columns: 68px 1fr; gap: 14px; }
  .post-card { display: block; }
  .post-card-media { display: block; aspect-ratio: 16 / 9; }
  .post-card-body { min-height: 215px; }
  .pagination { grid-template-columns: 1fr 1fr; }
  .page-count { grid-column: 1 / -1; grid-row: 2; text-align: center; }
  .archive-month { grid-template-columns: 1fr; gap: 2px; }
  .archive-post { grid-template-columns: 78px 1fr; }
  .article-hero-layout, .article-hero.no-cover .article-hero-layout { gap: 28px; padding-block: 40px; }
  .article-context { margin-bottom: 18px; }
  .article-hero h1 { font-size: 33px; }
  .article-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; margin-top: 22px; }
  .article-meta span, .article-meta a { white-space: normal; }
  .article-hero-media figcaption { min-height: 30px; }
  .article-brief-inner > p:last-child { line-height: 1.7; }
  .article-project-list { gap: 10px; padding-bottom: 24px; }
  .article-project-card { padding: 14px; }
  .article-project-title-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  .article-project-title-row h3 { font-size: 18px; }
  .article-project-media img, .article-project-media a.is-primary img { height: auto; aspect-ratio: 16 / 10; object-fit: contain; }
  .article-reading-layout { padding-top: 28px; }
  .article-content-body h2 { font-size: 25px; }
  .article-content-body h3 { font-size: 20px; }
  .article-content-body pre { margin-inline: 0; padding-inline: 16px; font-size: 13px; }
  .article-content-body pre::before { left: 16px; }
  .article-table-wrap { max-width: 100%; }
  .article-cover { height: 360px; }
  .article-header { padding-block: 46px 25px; }
  .article-header h1 { font-size: 31px; }
  .article-nav { grid-template-columns: 1fr; }
  .project-update { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .project-update-body h2 { font-size: 21px; }
  .build-matrix-intro h1 { font-size: 38px; }
  .matrix-projects:not([style]) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .matrix-board:not(.is-webgl-ready) .matrix-projects { max-height: 250px; overflow-y: auto; }
  .build-telemetry strong { font-size: 21px; }
  .project-index-row { min-height: 86px; grid-template-columns: 34px 64px minmax(0, 1fr) 18px; gap: 8px; padding-block: 10px; }
  .project-index-number { padding-left: 6px; }
  .project-index-media { width: 64px; }
  .project-index-stage { display: none; }
  .project-index-copy small { max-width: 100%; }
  .project-focus-inner { padding-left: 18px; }
  .featured-build-band { padding-block: 54px; }
  .featured-build-visual { min-height: 0; aspect-ratio: 4 / 3; }
  .featured-build-signal strong { font-size: 30px; }
  .featured-build-copy h2 { font-size: 28px; }
  .featured-build-queue-item { grid-template-columns: 24px minmax(0, 1fr) 58px; gap: 8px; }
  .featured-queue-media { width: 58px; }
  .project-product-hero h1 { font-size: 39px; }
  .project-product-hero-inner > p:not(.section-kicker) { font-size: 14px; }
  .project-stage-meta { display: grid; gap: 5px; }
  .project-product-signal { height: 41%; }
  .project-origin-layout h2, .project-stage-section-head h2, .project-archive-layout h2, .project-case-layout h2 { font-size: 29px; }
  .project-origin-copy p { font-size: 15px; }
  .project-achievement h3, .project-achievement.is-primary h3 { font-size: 24px; }
  .project-achievement p { font-size: 14px; }
  .build-stories-section { padding-block: 54px 130px; }
  .build-tier-control { width: 100%; }
  .build-tier-control button { flex: 1 0 auto; padding-inline: 10px; }
  .article-nav a:last-child { text-align: left; }
  .error-code { font-size: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .home-project-orbit { animation: none; }
}
