:root {
  --paper: #fbfbf8;
  --paper-soft: #f1f0ea;
  --ink: #101010;
  --muted: #6e6a62;
  --line: #d8d5cd;
  --line-strong: #101010;
  --accent: #e63946;
  --blue: #2457ff;
  --green: #1c7c54;
  --yellow: #f2c94c;
  --paper-rgb: 251, 251, 248;
  --ink-rgb: 16, 16, 16;
  --grid-weak: rgba(var(--ink-rgb), .055);
  --grid-strong: rgba(var(--ink-rgb), .16);
  --header-bg: rgba(var(--paper-rgb), .93);
  --surface: rgba(var(--paper-rgb), .78);
  --surface-soft: rgba(var(--paper-rgb), .72);
  --surface-solid: #fff;
  --image-frame: #111;
  --image-frame-soft: #0f0f10;
  --shadow: rgba(var(--ink-rgb), .1);
  --focus-ring: #e63946;
  --max: 1480px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --overshoot: cubic-bezier(.34, 1.56, .64, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper: #101216;
  --paper-soft: #181b22;
  --ink: #f6f2e9;
  --muted: #b8b2a7;
  --line: #343945;
  --line-strong: #f6f2e9;
  --accent: #ff5968;
  --blue: #72a7ff;
  --green: #65d39d;
  --yellow: #f2cd65;
  --paper-rgb: 16, 18, 22;
  --ink-rgb: 246, 242, 233;
  --grid-weak: rgba(var(--ink-rgb), .045);
  --grid-strong: rgba(var(--ink-rgb), .115);
  --header-bg: rgba(var(--paper-rgb), .9);
  --surface: rgba(25, 28, 35, .86);
  --surface-soft: rgba(22, 25, 31, .74);
  --surface-solid: #191c23;
  --image-frame: #080a10;
  --image-frame-soft: #0b0e15;
  --shadow: rgba(0, 0, 0, .48);
  --focus-ring: #ff6f7b;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, var(--grid-weak) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--paper);
  letter-spacing: 0;
}

html[data-theme="dark"] .preview-frame {
  border-color: rgba(var(--ink-rgb), .18);
}

html[data-theme="dark"] .preview-frame.has-image {
  box-shadow: inset 0 0 0 1px rgba(var(--ink-rgb), .08);
}

html[data-theme="dark"] .work-showcase,
html[data-theme="dark"] .blog-feature {
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

button,
a {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 80;
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  color: var(--ink);
  transform: translateY(-160%);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms var(--ease);
}

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

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-strong);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  width: fit-content;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand span:last-child {
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.main-nav a {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--paper);
  font-size: 13px;
  transition: background 260ms var(--ease), color 260ms var(--ease);
}

.main-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

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

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 42px);
  border: 1px solid var(--ink);
}

.lang-button {
  min-height: 38px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.lang-button + .lang-button {
  border-left: 1px solid var(--ink);
}

.lang-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.theme-button {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 40px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 260ms var(--ease), color 260ms var(--ease), transform 260ms var(--ease);
}

.theme-button:hover,
.theme-button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.theme-button:focus-visible,
.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.lang-button:focus-visible {
  outline-offset: 3px;
}

.section-grid {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
  border-bottom: 1px solid var(--line-strong);
}

.section-grid > * {
  min-width: 0;
}

#work,
#now,
#about,
#journal,
#contact {
  scroll-margin-top: 96px;
}

.section-index {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 150px);
  align-items: start;
  padding-bottom: 34px;
}

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

.hero-title {
  margin: 0;
  font-size: clamp(4.35rem, 7.75vw, 7.35rem);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-line {
  display: block;
  transform: translateY(34px);
  opacity: 0;
}

body.is-ready .hero-line {
  animation: titleIn 900ms var(--ease) forwards;
}

body.is-ready .hero-line:nth-child(2) {
  animation-delay: 90ms;
}

body.is-ready .hero-line:nth-child(3) {
  animation-delay: 180ms;
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero-intro {
  max-width: 620px;
  margin: 42px 0 0;
  font-size: clamp(1.22rem, 1.6vw, 1.75rem);
  line-height: 1.34;
  text-wrap: pretty;
}

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

.hero-proof-strip {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.hero-proof-strip a {
  display: grid;
  align-content: space-between;
  min-height: 92px;
  padding: 15px 16px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface-soft);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}

.hero-proof-strip a:hover,
.hero-proof-strip a:focus-visible {
  background: var(--surface-solid);
  transform: translateY(-2px);
}

.hero-proof-strip span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.hero-proof-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: .95;
  text-transform: uppercase;
}

.hero-proof-strip em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}

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

.button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--paper);
}

.hero-system {
  position: relative;
  border-left: 1px solid var(--ink);
  padding-left: 28px;
}

.hero-system::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 0;
  top: 166px;
  height: 1px;
  background: rgba(230, 57, 70, .24);
  transform-origin: left;
  transform: scaleX(0);
}

body.is-ready .hero-system::before {
  animation: lineSweep 1800ms var(--ease) 560ms forwards;
}

.system-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  min-height: 122px;
  align-items: end;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.system-row:first-child {
  border-top: 1px solid var(--ink);
}

.system-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.system-row strong {
  font-size: clamp(1.6rem, 2.32vw, 2.85rem);
  line-height: .92;
  text-transform: uppercase;
}

.section-heading {
  padding-bottom: 48px;
}

.section-heading h2,
.now h2,
.about h2,
.journal h2,
.contact h2,
.technical-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 5.3vw, 5.8rem);
  line-height: .93;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
  text-wrap: pretty;
}

.featured-app {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(460px, 1.14fr);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 22px;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
}

.featured-app-bands {
  height: 16px;
}

.featured-app-copy {
  display: grid;
  align-content: space-between;
  gap: 34px;
  min-height: 620px;
  padding: 58px 32px 30px;
}

.featured-app-type {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
}

.featured-app h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 9rem);
  line-height: .84;
  text-transform: uppercase;
  text-wrap: balance;
}

.featured-app-copy > div > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.featured-app-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.featured-app-proof div {
  min-height: 116px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.featured-app-proof dt {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.featured-app-proof dd {
  margin: 0;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}

.featured-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-app-media {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  border-left: 1px solid var(--ink);
  background:
    linear-gradient(90deg, var(--grid-weak) 1px, transparent 1px) 0 0 / 12.5% 100%,
    var(--paper);
}

.featured-app-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  padding-top: 16px;
}

.featured-app-metrics span {
  display: grid;
  align-items: end;
  min-height: 120px;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.95rem);
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
  text-wrap: balance;
}

.featured-app-metrics span:last-child {
  border-right: 0;
}

.featured-app-frame {
  display: grid;
  align-content: end;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 30px;
}

.featured-app-frame .preview-frame {
  min-height: 430px;
  border-color: var(--ink);
}

.featured-app-frame figcaption {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.featured-app.is-visible .featured-app-bands {
  animation: bandPop 640ms var(--ease);
}

.featured-app.is-visible .featured-app-frame .showcase-image {
  animation: imageIn 780ms var(--ease) both;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(420px, 1.15fr);
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line-strong);
}

.work-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.work-card {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
  position: relative;
  min-height: 210px;
  padding: 30px 22px 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}

.work-card:hover,
.work-card:focus-visible,
.work-card.is-selected {
  background: var(--surface-solid);
}

.work-card:focus-visible {
  outline-offset: -5px;
}

.work-card.is-selected {
  transform: translateX(8px);
}

.app-bands {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr;
  height: 10px;
  border-bottom: 1px solid var(--ink);
  transition: height 340ms var(--ease);
}

.work-card:hover .app-bands,
.work-card.is-selected .app-bands {
  height: 18px;
}

.app-bands i:nth-child(1),
.preview-bands i:nth-child(1) {
  background: var(--c1);
}

.app-bands i:nth-child(2),
.preview-bands i:nth-child(2) {
  background: var(--c2);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.app-bands i:nth-child(3),
.preview-bands i:nth-child(3) {
  background: var(--c3);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 13px;
}

.work-card strong {
  display: block;
  max-width: 420px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: .94;
  text-transform: uppercase;
}

.work-card-summary {
  display: block;
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.work-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 460px;
  margin-top: 18px;
}

.work-status-row span,
.status-pill {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-card-action {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-showcase {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 650px;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
}

.showcase-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--ink);
}

.showcase-header > span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  color: var(--accent);
  font-size: 48px;
  font-weight: 900;
}

.showcase-header div {
  padding: 24px;
}

.showcase-header p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.showcase-header h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: .9;
  text-transform: uppercase;
  text-wrap: balance;
}

.showcase-preview {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border-bottom: 1px solid var(--ink);
}

.preview-bands {
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr;
  height: 24px;
  margin-bottom: 30px;
  border: 1px solid var(--ink);
  transform-origin: left;
}

.work-showcase.is-changing .preview-bands {
  animation: bandPop 560ms var(--ease);
}

.preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  min-height: 210px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px) 0 0 / 42px 100%,
    linear-gradient(var(--grid-strong) 1px, transparent 1px) 0 0 / 100% 38px,
    var(--paper);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  transition: background 360ms var(--ease), border-color 360ms var(--ease);
}

.preview-frame.has-image {
  border-color: rgba(var(--ink-rgb), .28);
  background: var(--image-frame);
}

.preview-frame.has-image span {
  display: none;
}

.showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(.985);
  transition: opacity 360ms var(--ease), transform 500ms var(--ease);
}

.preview-frame.has-image .showcase-image {
  opacity: 1;
  transform: scale(1);
}

.preview-frame[data-media="desktop"] .showcase-image {
  padding: 0;
}

.preview-frame[data-media="mobile"] {
  aspect-ratio: auto;
  height: 440px;
  min-height: 0;
  background: var(--image-frame-soft);
}

.preview-frame[data-media="mobile"] .showcase-image {
  width: 100%;
  height: 100%;
  padding: 14px 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

.work-showcase.is-changing .showcase-image {
  animation: imageIn 620ms var(--ease);
}

.showcase-notes {
  padding: 24px;
}

.showcase-notes p {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.35;
}

.showcase-notes dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.showcase-notes div {
  min-height: 96px;
  padding: 16px 14px;
  border-right: 1px solid var(--line);
}

.showcase-notes div:last-child {
  border-right: 0;
}

.showcase-notes dt {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.showcase-notes dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.showcase-link {
  margin-top: 22px;
}

.app-page {
  padding-bottom: 72px;
}

.app-detail {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
}

.app-detail-hero {
  min-height: calc(100vh - 170px);
  padding-bottom: 36px;
}

.app-back {
  display: inline-block;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
  transition: color 260ms var(--ease), border-color 260ms var(--ease);
}

.app-back:hover {
  border-color: var(--c1);
  color: var(--ink);
}

.app-detail-title {
  max-width: min(100%, 760px);
  margin: 0;
  font-size: clamp(4.4rem, 7.2vw, 7.6rem);
  line-height: .84;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.app-detail-summary {
  max-width: 760px;
  margin: 42px 0 0;
  font-size: clamp(1.25rem, 1.85vw, 2rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.app-detail-side {
  align-self: start;
  border-top: 1px solid var(--ink);
  margin-top: 78px;
  padding-top: 22px;
}

.app-detail-side .preview-bands {
  margin-bottom: 32px;
}

.app-detail-side p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
}

.app-status-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.app-hero-shot {
  margin: 28px 0 0;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  overflow: hidden;
}

.app-hero-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  background: var(--image-frame);
  overflow: hidden;
}

.app-hero-frame[data-media="mobile"] {
  aspect-ratio: auto;
  height: 360px;
  background: var(--image-frame-soft);
}

.app-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.app-hero-frame[data-media="mobile"] .app-hero-image {
  padding: 16px 0;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

.app-hero-expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 8px 10px;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: zoom-in;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}

.app-hero-expand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.app-hero-caption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.app-shot-gallery {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.app-shot-gallery[hidden] {
  display: none;
}

.app-gallery-thumb {
  flex: 0 0 92px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--muted);
  padding: 6px;
  cursor: pointer;
  text-align: left;
}

.app-gallery-thumb.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.app-gallery-thumb img {
  display: block;
  width: 100%;
  height: 92px;
  margin-bottom: 7px;
  background: var(--image-frame-soft);
  object-fit: cover;
  object-position: top center;
}

.app-gallery-thumb span {
  display: block;
  overflow: hidden;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body.is-lightbox-open {
  overflow: hidden;
}

.app-lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: #050505;
  color: #f8f7f2;
}

.app-lightbox:not([open]) {
  display: none;
}

.app-lightbox::backdrop {
  background: rgba(0, 0, 0, .86);
}

.app-lightbox-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  min-height: 100%;
  padding: 18px 24px 22px;
}

.app-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(248, 247, 242, .28);
}

.app-lightbox-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.app-lightbox-toolbar strong,
.app-lightbox-toolbar span,
.app-lightbox-caption {
  text-transform: uppercase;
}

.app-lightbox-toolbar strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-lightbox-toolbar span {
  flex: 0 0 auto;
  color: rgba(248, 247, 242, .62);
  font-size: 12px;
}

.app-lightbox-button,
.app-lightbox-nav {
  border: 1px solid rgba(248, 247, 242, .76);
  background: rgba(248, 247, 242, .08);
  color: #f8f7f2;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.app-lightbox-button {
  flex: 0 0 auto;
  padding: 10px 12px;
}

.app-lightbox-button:focus-visible,
.app-lightbox-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.app-lightbox-stage {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  padding: 18px 58px 0;
}

.app-lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.app-lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.app-lightbox-figure[data-media="mobile"] .app-lightbox-image {
  justify-self: center;
  width: auto;
  max-width: min(440px, 92vw);
  height: 100%;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, .52));
}

.app-lightbox-caption {
  min-height: 44px;
  padding-top: 12px;
  color: rgba(248, 247, 242, .72);
  font-size: 12px;
  line-height: 1.35;
}

.app-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}

.app-lightbox-prev {
  left: 0;
}

.app-lightbox-next {
  right: 0;
}

.app-lightbox-nav[hidden] {
  display: none;
}

.app-status-title {
  flex-basis: 100%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-information {
  align-items: start;
}

.app-information .app-facts,
.app-information .app-notes {
  grid-column: 2 / -1;
}

.app-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.app-facts div {
  min-height: 128px;
  padding: 18px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface-soft);
}

.app-facts dt {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.app-facts dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.app-notes {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.app-notes > p:nth-child(2) {
  max-width: 900px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  text-wrap: pretty;
}

.app-notes ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.app-notes li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.4;
  text-wrap: pretty;
}

.app-note-label,
.app-note-title,
.app-note-body {
  display: block;
}

.app-note-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.app-note-title {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.app-note-body {
  margin: 0;
  color: var(--ink);
}

.app-note-body + .app-note-body {
  margin-top: 8px;
}

.app-note-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: 8px 18px;
  margin: 14px 0 0;
}

.app-note-details dt {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.app-note-details dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.app-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 16px;
  height: 4px;
  background: var(--c1);
}

.app-technical {
  align-items: start;
}

.technical-intro p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  text-wrap: pretty;
}

.technical-proof {
  display: grid;
  gap: 16px;
}

.technical-diagram {
  padding-top: 22px;
  border-top: 1px solid var(--ink);
}

.technical-diagram-label {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-diagram-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 22px 0 18px;
}

.diagram-node,
.diagram-arrow {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.diagram-node {
  padding: 0 12px;
  background: var(--surface);
}

.diagram-arrow {
  min-width: 34px;
  color: var(--muted);
  background: var(--paper);
}

.technical-diagram p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  text-wrap: pretty;
}

.technical-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.technical-proof-card {
  min-height: 170px;
  padding: 18px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface-soft);
}

.technical-proof-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.technical-proof-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.app-next {
  padding-top: 44px;
  padding-bottom: 44px;
}

.app-next a {
  display: grid;
  align-content: space-between;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--surface-soft);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.app-next a:hover {
  background: var(--surface-solid);
  transform: translateY(-3px);
}

.app-next span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.app-next strong {
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: .9;
  text-transform: uppercase;
}

.not-found-page {
  min-height: 100vh;
}

.not-found {
  min-height: calc(100vh - 120px);
  align-items: center;
}

.not-found-panel {
  --c1: #0a0a0e;
  --c2: #c9a84c;
  --c3: #d4752a;
  align-self: end;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  overflow: hidden;
}

.not-found-panel .app-bands {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr;
  width: 100%;
  height: 18px;
  border-bottom: 1px solid var(--ink);
}

.not-found-panel strong {
  display: block;
  padding: 24px 24px 12px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .86;
  text-transform: uppercase;
}

.not-found-panel p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.blog-page {
  padding-bottom: 72px;
}

.blog-hero {
  min-height: calc(100vh - 160px);
  padding-bottom: 48px;
}

.blog-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(4.6rem, 9.75vw, 9.6rem);
  font-weight: 900;
  line-height: .84;
  text-transform: uppercase;
  text-wrap: balance;
}

.blog-title span {
  display: block;
}

.blog-intro {
  max-width: 760px;
  margin: 42px 0 0;
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  line-height: 1.33;
  text-wrap: pretty;
}

.blog-manifest {
  align-self: end;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.blog-manifest > span {
  display: block;
  margin-bottom: 56px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-manifest strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 4.25rem);
  line-height: .9;
  text-transform: uppercase;
}

.blog-manifest p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

.blog-manifest-links {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.blog-manifest-links a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  transition: background 220ms var(--ease), color 220ms var(--ease);
}

.blog-manifest-links a:hover,
.blog-manifest-links a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.blog-manifest-links span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.blog-manifest-links strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 18px;
  align-items: end;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 22px;
}

.blog-search {
  display: grid;
  gap: 10px;
}

.blog-search span,
.blog-search-status {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  outline: 0;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.blog-search input:focus {
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus-ring), transparent 70%);
  background: var(--surface-solid);
}

.blog-search-status {
  margin: 0 0 16px;
  justify-self: end;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--ink);
}

.blog-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.blog-empty {
  min-height: 280px;
  border: 1px solid var(--ink);
  background: var(--surface);
  padding: 32px;
}

.blog-empty strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .9;
  text-transform: uppercase;
}

.blog-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.blog-card {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
  position: relative;
  display: block;
  width: 100%;
  min-height: 238px;
  padding: 32px 22px 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}

.blog-card:hover,
.blog-card:focus-visible,
.blog-card.is-selected {
  background: var(--surface-solid);
}

.blog-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: -4px;
}

.blog-card.is-selected {
  transform: translateX(8px);
}

.blog-card:hover .app-bands,
.blog-card.is-selected .app-bands {
  height: 18px;
}

.blog-card-meta,
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.blog-card-meta {
  margin-bottom: 48px;
}

.blog-card strong {
  display: block;
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 2.65vw, 3rem);
  line-height: .94;
  text-transform: uppercase;
  text-wrap: balance;
}

.blog-card-summary {
  display: block;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  text-wrap: pretty;
}

.blog-card-tags,
.pill-list,
#articleTags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-card-tags {
  margin-top: 22px;
}

.blog-card-tags span,
.pill-list span,
#articleTags span {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.blog-card-footer {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 700;
}

.blog-feature {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 640px;
  border: 1px solid var(--ink);
  background: var(--surface-solid);
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
}

.blog-feature > .app-bands {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr 1.35fr;
  height: 18px;
  border-bottom: 1px solid var(--ink);
}

.blog-feature.is-changing > .app-bands {
  animation: bandPop 560ms var(--ease);
}

.blog-feature-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--ink);
}

.blog-feature-header > span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  color: var(--accent);
  font-size: 48px;
  font-weight: 900;
}

.blog-feature-header div {
  padding: 24px;
}

.blog-feature-header p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.blog-feature-header h3 {
  margin: 0;
  font-size: clamp(2.4rem, 3.9vw, 4.8rem);
  line-height: .9;
  text-transform: uppercase;
  text-wrap: balance;
}

.blog-feature-summary {
  max-width: 760px;
  margin: 0;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
  line-height: 1.36;
  text-wrap: pretty;
}

.blog-feature-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.blog-feature-facts div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.blog-feature-facts div:last-child {
  border-right: 0;
}

.blog-feature-facts dt {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-feature-facts dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.blog-feature-notes {
  padding: 24px;
}

.blog-feature-taxonomy {
  padding: 20px 24px 0;
}

.blog-feature-notes ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.blog-feature-notes li {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
  text-wrap: pretty;
}

.blog-feature-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 16px;
  height: 4px;
  background: var(--c1, var(--accent));
}

.blog-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px 24px;
}

.blog-feature-actions .button {
  margin: 0;
}

.article-page {
  padding-bottom: 72px;
}

.article-detail {
  --c1: var(--accent);
  --c2: var(--blue);
  --c3: var(--yellow);
}

.article-hero {
  min-height: calc(100vh - 170px);
  padding-bottom: 48px;
}

.article-title {
  max-width: min(100%, 780px);
  margin: 0;
  font-size: clamp(3.65rem, 6.35vw, 7.15rem);
  line-height: .86;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.article-summary {
  max-width: 800px;
  margin: 38px 0 0;
  font-size: clamp(1.25rem, 1.85vw, 2rem);
  line-height: 1.34;
  text-wrap: pretty;
}

.article-side {
  align-self: start;
  border-top: 1px solid var(--ink);
  margin-top: 86px;
  padding-top: 22px;
}

.article-side .preview-bands {
  margin-bottom: 32px;
}

.article-side > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.article-side dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.article-side dl > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.article-side dt {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.article-side dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.article-hero-media {
  margin: 0 0 18px;
  border: 1px solid var(--ink);
  background: var(--surface);
  overflow: hidden;
}

.article-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface-solid);
  object-fit: contain;
}

.article-hero-media figcaption {
  padding: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.article-angle {
  align-items: start;
}

.article-angle p:last-child {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 3.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

.article-angle .button {
  align-self: start;
}

.article-toc {
  align-items: start;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-toc ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.article-toc li {
  min-height: 92px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-toc a {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.article-toc a:hover,
.article-toc a:focus-visible {
  background: var(--surface-solid);
  outline: 0;
}

.article-toc a[aria-current="true"] {
  background: var(--ink);
  color: var(--paper);
}

.article-toc span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.article-toc a[aria-current="true"] span {
  color: var(--paper);
}

.article-sections {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}

.article-section {
  display: grid;
  grid-template-columns: 88px minmax(0, .7fr) minmax(360px, 1fr);
  gap: 22px;
  padding: 42px 0;
  border-top: 1px solid var(--ink);
  scroll-margin-top: 112px;
}

.article-section span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.5rem);
  line-height: .92;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  text-wrap: pretty;
}

.article-section-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.article-section-copy p {
  max-width: none;
}

.article-figure {
  margin: 8px 0;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.article-figure img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.article-section-copy ul {
  display: grid;
  gap: 10px;
  max-width: none;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.article-section-copy li::marker {
  color: var(--accent);
}

.article-section-copy blockquote {
  margin: 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.35;
}

.article-section-copy a {
  color: var(--ink);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-section-copy code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: .85em/1.2 "SFMono-Regular", Consolas, monospace;
}

.article-component {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding: 18px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, var(--c1), var(--c2), var(--c3)) top left / 100% 5px no-repeat,
    var(--surface);
}

.article-component strong {
  font-size: 12px;
  text-transform: uppercase;
}

.article-component p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.article-section.is-visible .article-component {
  animation: componentLift 660ms var(--ease) both;
}

.article-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-metrics span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  background: var(--surface-solid);
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  text-align: center;
  text-transform: uppercase;
}

.article-section.is-visible .article-metrics span {
  animation: metricIn 520ms var(--overshoot) both;
}

.article-section.is-visible .article-metrics span:nth-child(2) {
  animation-delay: 70ms;
}

.article-section.is-visible .article-metrics span:nth-child(3) {
  animation-delay: 140ms;
}

.article-section.is-visible .article-figure img,
.article-hero-media:not([hidden]) img {
  animation: imageIn 640ms var(--ease) both;
}

.article-notes {
  align-items: start;
}

.article-notes ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-notes li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
  text-wrap: pretty;
}

.article-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 16px;
  height: 4px;
  background: var(--c1);
}

.article-next {
  padding-top: 44px;
  padding-bottom: 44px;
}

.article-next a {
  display: grid;
  align-content: space-between;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--surface-soft);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.article-next a:hover {
  background: var(--surface-solid);
  transform: translateY(-3px);
}

.article-next span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.article-next strong {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: .92;
  text-transform: uppercase;
  text-wrap: balance;
}

.now,
.about,
.journal,
.contact {
  align-items: start;
}

.now-statement p:last-child,
.about-statement p:last-child {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: 22px;
  line-height: 1.42;
  text-wrap: pretty;
}

.now-board {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.now-lane {
  min-height: 168px;
  padding: 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
}

.now-lane span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.now-lane strong {
  display: block;
  margin: 22px 0 10px;
  font-size: 24px;
  line-height: .96;
  text-transform: uppercase;
}

.principles {
  border-top: 1px solid var(--ink);
}

.principles div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.principles strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 36px;
  line-height: .95;
  text-transform: uppercase;
}

.principles p,
.now-lane p,
.journal-lane p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.contact-panel {
  border: 1px solid var(--ink);
  background: var(--surface);
  padding: 24px;
}

.journal-intro {
  max-width: 900px;
}

.journal-note {
  max-width: 720px;
  margin-top: 30px;
  margin-bottom: 28px;
}

.journal-preview {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.journal-lane {
  min-height: 150px;
  padding: 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
}

.journal-lane span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.journal-lane strong {
  display: block;
  margin: 22px 0 10px;
  font-size: 24px;
  line-height: .96;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineSweep {
  to {
    transform: scaleX(1);
  }
}

@keyframes bandPop {
  0% {
    transform: scaleX(.14);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes imageIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(.975);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes componentLift {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metricIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  [data-reveal],
  .hero-line {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .featured-app-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-app-metrics span {
    min-height: 86px;
    border-bottom: 1px solid var(--line);
  }

  .featured-app-metrics span:nth-child(2n) {
    border-right: 0;
  }

  .featured-app-metrics span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 1120px) {
  body {
    background: var(--paper);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 16px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .theme-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .main-nav a {
    padding: 0 10px;
  }

  #work,
  #now,
  #about,
  #journal,
  #contact {
    scroll-margin-top: 170px;
  }

  .section-grid,
  .work-layout,
  .blog-layout,
  .article-section {
    grid-template-columns: 1fr;
  }

  .featured-app {
    grid-template-columns: 1fr;
  }

  .featured-app-copy {
    min-height: auto;
  }

  .featured-app-media {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .hero {
    min-height: auto;
  }

  .app-detail-hero,
  .blog-hero,
  .article-hero {
    min-height: auto;
  }

  .hero-system {
    border-left: 0;
    padding-left: 0;
  }

  .hero-system::before {
    left: 0;
  }

  .work-showcase,
  .blog-feature {
    position: relative;
    top: auto;
  }

  .hero-proof-strip {
    grid-column: 1;
  }

  .app-detail-side,
  .article-side {
    margin-top: 0;
  }

  .app-information .app-facts,
  .app-information .app-notes {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-grid,
  .work-layout,
  .featured-app,
  .blog-layout,
  .blog-tools,
  .article-sections {
    width: min(calc(100vw - 28px), var(--max));
  }

  .brand {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 6px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: auto;
    padding: 10px 0 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(2, 34px);
    justify-self: end;
  }

  .lang-button {
    min-height: 34px;
    font-size: 11px;
  }

  .theme-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    width: 34px;
    min-height: 36px;
    font-size: 16px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0;
  }

  .main-nav a {
    min-height: 34px;
    min-width: 0;
    padding: 0 4px;
    font-size: 11px;
  }

  #work,
  #now,
  #about,
  #journal,
  #contact {
    scroll-margin-top: 112px;
  }

  .section-grid {
    padding: 54px 0;
  }

  .hero-copy {
    width: calc(100vw - 28px);
    max-width: 22rem;
  }

  .hero-title {
    width: min(calc(100vw - 28px), 100%);
    max-width: 22rem;
    font-size: clamp(2.75rem, 12vw, 3.35rem);
    overflow-wrap: anywhere;
  }

  .app-detail-title {
    font-size: clamp(2.75rem, 13vw, 4.15rem);
    overflow-wrap: anywhere;
  }

  .featured-app-copy {
    gap: 28px;
    padding: 48px 18px 20px;
  }

  .featured-app h3 {
    font-size: clamp(3.25rem, 15vw, 4.75rem);
    overflow-wrap: anywhere;
  }

  .featured-app-copy > div > p:last-child {
    margin-top: 24px;
    font-size: 18px;
  }

  .featured-app-proof,
  .featured-app-metrics {
    grid-template-columns: 1fr;
  }

  .featured-app-proof div {
    min-height: 98px;
  }

  .featured-app-metrics span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 28px;
  }

  .featured-app-metrics span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .featured-app-metrics span:last-child {
    border-bottom: 0;
  }

  .featured-app-frame {
    padding: 18px;
  }

  .featured-app-frame .preview-frame {
    min-height: 240px;
  }

  .blog-title {
    font-size: clamp(3.4rem, 17vw, 5.1rem);
  }

  .article-title {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: .93;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-intro,
  .app-detail-summary,
  .blog-intro,
  .article-summary,
  .now-statement p:last-child,
  .about-statement p:last-child {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
    text-wrap: wrap;
  }

  .app-detail-hero {
    row-gap: 24px;
    padding-top: 34px;
  }

  .app-back {
    margin-bottom: 20px;
  }

  .app-detail-summary {
    margin-top: 24px;
  }

  .app-detail-side {
    padding-top: 16px;
  }

  .app-detail-side .preview-bands {
    margin-bottom: 18px;
  }

  .app-detail-side p {
    margin-bottom: 14px;
  }

  .app-status-rail {
    margin-top: 12px;
  }

  .app-hero-shot {
    margin-top: 16px;
  }

  .hero-intro {
    width: calc(100vw - 28px);
    max-width: 22rem;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip a {
    min-height: 76px;
  }

  .hero-proof-strip strong {
    font-size: 19px;
  }

  .system-row,
  .showcase-header,
  .blog-feature-header,
  .blog-feature-facts,
  .app-facts dl,
  .technical-proof-grid,
  .app-next,
  .article-next,
  .showcase-notes dl {
    grid-template-columns: 1fr;
  }

  .system-row strong {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .work-layout {
    padding-bottom: 64px;
  }

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

  .work-card.is-selected {
    transform: none;
  }

  .blog-card {
    min-height: 280px;
  }

  .blog-tools {
    grid-template-columns: 1fr;
  }

  .blog-search-status {
    justify-self: start;
    margin: 0;
  }

  .blog-card-footer {
    display: grid;
    gap: 8px;
  }

  .blog-card.is-selected {
    transform: none;
  }

  .work-showcase {
    min-height: 0;
  }

  .blog-feature {
    min-height: 0;
  }

  .showcase-header > span,
  .blog-feature-header > span {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .showcase-preview {
    padding: 18px;
  }

  .preview-frame {
    min-height: 180px;
  }

  .preview-frame[data-media="mobile"] {
    height: 390px;
  }

  .preview-frame[data-media="mobile"] .showcase-image {
    padding: 12px 0;
  }

  .app-hero-frame {
    min-height: 185px;
  }

  .app-hero-frame[data-media="mobile"] {
    height: 380px;
  }

  .app-hero-expand {
    right: 8px;
    bottom: 8px;
    padding: 8px;
    font-size: 9px;
  }

  .app-lightbox-shell {
    padding: 10px;
  }

  .app-lightbox-toolbar {
    gap: 10px;
    padding-bottom: 10px;
  }

  .app-lightbox-toolbar > div {
    display: grid;
    gap: 4px;
  }

  .app-lightbox-button {
    padding: 9px 10px;
  }

  .app-lightbox-stage {
    padding: 12px 0 58px;
  }

  .app-lightbox-nav {
    top: auto;
    bottom: 4px;
    transform: none;
  }

  .app-lightbox-prev {
    left: calc(50% - 52px);
  }

  .app-lightbox-next {
    right: calc(50% - 52px);
  }

  .app-lightbox-caption {
    font-size: 11px;
  }

  .app-note-details {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .app-note-details dd + dt {
    margin-top: 8px;
  }

  .app-next a {
    min-height: 140px;
  }

  .article-section {
    padding: 34px 0;
    scroll-margin-top: 178px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-toc li {
    min-height: 72px;
  }

  .article-toc a {
    gap: 8px;
  }

  .article-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .article-section p,
  .article-section-copy ul,
  .article-component p,
  .article-notes li {
    font-size: 17px;
  }

  .article-angle p:last-child {
    font-size: clamp(1.55rem, 7vw, 2.6rem);
  }

  .article-next a {
    min-height: 140px;
  }

  .showcase-notes div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-notes div:last-child {
    border-bottom: 0;
  }

  .blog-feature-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-feature-facts div:last-child {
    border-bottom: 0;
  }
}
