:root {
  --ink: #151719;
  --ink-deep: #090b0c;
  --ink-soft: #596166;
  --paper: #f7f9f8;
  --white: #ffffff;
  --mist: #edf1f0;
  --line: #d6dddc;
  --line-dark: #343a3d;
  --cyan: #008fc2;
  --cyan-dark: #006f97;
  --magenta: #c30b68;
  --yellow: #d99b00;
  --green: #15745d;
  --max: 1200px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--magenta);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

h1,
h2,
h3,
p,
a,
span {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  background: rgb(247 249 248 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  border-bottom: 4px solid var(--cyan);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-short {
  display: none;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact,
.header-resume {
  font-size: 13px;
  font-weight: 820;
  text-underline-offset: 5px;
}

.header-contact {
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 2px;
}

.header-resume {
  color: var(--cyan-dark);
  text-decoration: none;
}

.header-resume:hover,
.header-contact:hover {
  color: var(--magenta);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 39px);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.language-switch button {
  min-height: 32px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.mobile-menu-toggle {
  min-height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.mobile-menu-toggle[aria-expanded="true"] {
  color: var(--white);
  background: var(--ink);
}

.mobile-menu {
  width: 100%;
  display: none;
  padding: 0 24px 18px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(620px, calc(100svh - 116px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 54px 0 62px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% + 330px);
  border-left: 1px solid var(--line);
}

.hero-mark {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: max(-120px, calc((100vw - var(--max)) / 2 - 185px));
  width: 680px;
  height: 680px;
  object-fit: contain;
  opacity: .115;
  transform: translateY(-50%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.availability > span:first-child {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(21 116 93 / 12%);
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 860;
}

.hero-role {
  margin: 16px 0 0;
  color: var(--cyan-dark);
  font-size: 16px;
  font-weight: 800;
}

.hero-statement {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: 29px;
  line-height: 1.24;
  font-weight: 760;
}

.hero-summary {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
}

.button-secondary {
  background: var(--white);
}

.button-secondary:hover {
  color: var(--magenta);
  border-color: var(--magenta);
}

.hero-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.hero-links a,
.contact-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hero-links a:hover,
.contact-links a:hover {
  color: var(--cyan-dark);
}

.metric-band {
  color: var(--white);
  background: var(--ink-deep);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid > div {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line-dark);
}

.metric-grid > div:first-child {
  padding-left: 0;
}

.metric-grid > div:last-child {
  border-right: 0;
}

.metric-grid strong {
  color: #70d8e8;
  font-size: 37px;
  line-height: 1;
}

.metric-grid > div:nth-child(2) strong {
  color: #ff72b5;
}

.metric-grid > div:nth-child(3) strong {
  color: #f2c34b;
}

.metric-grid > div:nth-child(4) strong {
  color: #73c9ad;
}

.metric-grid span {
  max-width: 220px;
  margin-top: 12px;
  color: #c2c9cc;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #6bd8e8;
}

.eyebrow-magenta {
  color: var(--magenta);
}

.audience-band {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-grid > div {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 42px 54px 42px 0;
}

.audience-grid > div + div {
  padding-right: 0;
  padding-left: 54px;
  border-left: 1px solid var(--line);
}

.audience-grid h2 {
  max-width: 500px;
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
}

.audience-grid p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.text-link,
.project-link,
.back-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link {
  margin-top: auto;
  padding-top: 28px;
}

.text-link:hover,
.project-link:hover,
.back-link:hover {
  color: var(--magenta);
}

.section-intro h2,
.expertise-heading h2,
.work-heading h2,
.approach-heading h2,
.contact-layout h2,
.case-heading h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 830;
}

.section-intro.compact h2 {
  font-size: 40px;
}

.section-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.experience-band {
  padding: 106px 0;
  background: var(--paper);
}

.experience-layout {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 92px;
  align-items: start;
}

.experience-layout .section-intro {
  position: sticky;
  top: 108px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-size: 23px;
}

.timeline strong {
  display: block;
  margin-top: 3px;
  color: var(--cyan-dark);
  font-size: 14px;
}

.timeline p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.work-band {
  padding: 108px 0 114px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 88px;
  align-items: end;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.work-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.project {
  display: grid;
  gap: 66px;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.project-featured {
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
}

.project-secondary {
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
}

.project-reverse {
  grid-template-columns: 1.08fr .92fr;
}

.project-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbd2d1;
  border-radius: var(--radius);
  box-shadow: 0 24px 52px rgb(18 22 22 / 12%);
}

.app-visual {
  background: var(--white);
}

.browser-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #e9edec;
  border-bottom: 1px solid #d3d9d8;
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a9b0b0;
}

.browser-bar > span:first-child {
  background: var(--magenta);
}

.browser-bar > span:nth-child(2) {
  background: var(--yellow);
}

.browser-bar > span:nth-child(3) {
  background: var(--green);
}

.browser-bar b {
  margin-left: auto;
  color: #687071;
  font-size: 10px;
  text-transform: uppercase;
}

.app-visual img {
  width: 100%;
  height: auto;
}

.project-label {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0;
  font-size: 33px;
  line-height: 1.14;
}

.project-content > p:not(.project-label, .project-stack, .project-disclaimer) {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.project-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-proof div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.project-proof div:first-child {
  padding-left: 0;
}

.project-proof div:last-child {
  border-right: 0;
}

.project-proof strong,
.project-proof span {
  display: block;
}

.project-proof strong {
  font-size: 28px;
  line-height: 1;
}

.project-proof span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-stack {
  margin: 24px 0 0;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
}

.project-link {
  margin-top: 20px;
}

.project-actions-inline,
.case-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.project-link-muted {
  color: var(--ink-soft);
  text-decoration-color: var(--line-dark);
}

.project-video,
.case-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink-deep);
}

.project-disclaimer {
  margin: 16px 0 0;
  color: #777e82;
  font-size: 12px;
}

.evidence-panel {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink-deep);
}

.evidence-panel > p {
  margin: 0;
  color: #b8c1c4;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.evidence-panel > strong {
  display: block;
  margin: auto 0;
  font-size: 56px;
  line-height: 1;
}

.evidence-cyan {
  border-top: 7px solid var(--cyan);
}

.evidence-cyan > strong {
  color: #70d8e8;
}

.evidence-magenta {
  border-top: 7px solid var(--magenta);
}

.evidence-magenta > strong {
  color: #ff72b5;
}

.evidence-green {
  border-top: 7px solid var(--green);
}

.evidence-green > strong {
  color: #73c9ad;
}

.evidence-neutral {
  border-top: 7px solid var(--yellow);
}

.evidence-neutral > strong {
  color: #f2c34b;
}

.evidence-panel dl {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.evidence-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-dark);
}

.evidence-panel dt,
.evidence-panel dd {
  margin: 0;
  font-size: 13px;
}

.evidence-panel dt {
  color: #aeb7ba;
}

.evidence-panel dd {
  text-align: right;
  font-weight: 820;
}

.work-footer {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.expertise-band {
  padding: 100px 0 106px;
  color: var(--white);
  background: var(--ink-deep);
}

.expertise-heading {
  max-width: 820px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.expertise-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
}

.expertise-grid article:first-child {
  padding-left: 0;
}

.expertise-grid article:last-child {
  border-right: 0;
}

.expertise-number {
  color: #70d8e8;
  font-size: 12px;
  font-weight: 900;
}

.expertise-grid article:nth-child(2) .expertise-number {
  color: #ff72b5;
}

.expertise-grid article:nth-child(3) .expertise-number {
  color: #f2c34b;
}

.expertise-grid article:nth-child(4) .expertise-number {
  color: #73c9ad;
}

.expertise-grid h3 {
  margin: 52px 0 12px;
  font-size: 23px;
}

.expertise-grid article > p:not(.tech-line) {
  margin: 0;
  color: #bfc5c8;
  font-size: 15px;
}

.tech-line {
  margin: auto 0 0;
  color: #e9eced;
  font-size: 12px;
  font-weight: 800;
}

.services-band {
  padding: 106px 0;
  background: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 96px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.services-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.services-list article > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
}

.services-list h3 {
  margin: 0;
  font-size: 22px;
}

.services-list p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.approach-band {
  padding: 100px 0 108px;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.approach-heading {
  max-width: 780px;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c8d0cf;
  border-bottom: 1px solid #c8d0cf;
}

.approach-list li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid #c8d0cf;
}

.approach-list li:first-child {
  padding-left: 0;
}

.approach-list li:last-child {
  border-right: 0;
}

.approach-list li > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
}

.approach-list li > div {
  margin-top: auto;
}

.approach-list strong {
  font-size: 22px;
}

.approach-list p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0;
  color: var(--white);
  background: var(--ink-deep);
  border-top: 7px solid var(--cyan);
}

.contact-mark {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -290px;
  width: 620px;
  height: 620px;
  object-fit: contain;
  opacity: .08;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
}

.contact-copy > p {
  margin: 0;
  color: #b9c1c4;
  font-size: 18px;
}

.contact-email {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-size: 27px;
  font-weight: 850;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.contact-email:hover {
  color: #75d9e8;
}

.contact-links {
  margin-top: 34px;
}

.contact-links a {
  color: #b9c1c4;
}

footer {
  color: #9da5a8;
  background: #070808;
}

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

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

.footer-brand > span:last-child {
  display: grid;
}

.footer-brand strong {
  color: #dfe3e4;
  font-size: 13px;
}

.footer-brand small,
.footer-inner p {
  color: #899195;
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

/* Case studies */
.case-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.case-hero .hero-mark {
  top: 48%;
}

.case-hero-inner {
  position: relative;
}

.back-link {
  margin-bottom: 62px;
}

.case-hero h1 {
  max-width: 900px;
  font-size: 62px;
  line-height: 1.04;
}

.case-hero-inner > p:not(.eyebrow) {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.case-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.case-index a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.case-index a:first-child {
  padding-left: 0;
}

.case-index a:last-child {
  border-right: 0;
}

.case-index a:hover {
  color: var(--cyan-dark);
}

.case-index a > span:first-child {
  color: var(--magenta);
  font-size: 11px;
}

.case-study {
  padding: 108px 0 114px;
  background: var(--white);
  scroll-margin-top: 72px;
}

.case-study-alt {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 88px;
  align-items: end;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.case-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.case-screenshot {
  margin-top: 64px;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-facts > div {
  min-height: 142px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.case-facts > div:first-child {
  padding-left: 0;
}

.case-facts > div:last-child {
  border-right: 0;
}

.case-facts strong,
.case-facts span {
  display: block;
}

.case-facts strong {
  font-size: 32px;
  line-height: 1;
}

.case-facts span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.case-body section {
  min-height: 280px;
  padding: 36px 42px 36px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-body section:nth-child(even) {
  padding-right: 0;
  padding-left: 42px;
  border-right: 0;
}

.case-kicker {
  margin: 0;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 28px 0 0;
  font-size: 25px;
  line-height: 1.15;
}

.case-body section > p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.case-stack {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-stack strong {
  color: var(--cyan-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.case-stack span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.case-links {
  margin-top: 28px;
}

.case-links a {
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.case-links a:hover {
  color: var(--magenta);
}

.case-evidence-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.case-evidence-row .evidence-panel {
  min-height: 250px;
}

.case-evidence-row .evidence-panel > strong {
  margin: 46px 0 0;
  font-size: 38px;
}

.case-contact {
  border-top-color: var(--magenta);
}

.error-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.error-mark {
  position: absolute;
  z-index: -1;
  right: -160px;
  width: 620px;
  height: 620px;
  object-fit: contain;
  opacity: .1;
}

.error-layout h1 {
  font-size: 64px;
}

.error-layout > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--ink-soft);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-menu:not([hidden]) {
    display: flex;
  }

  .mobile-menu:not([hidden]) {
    flex-direction: column;
  }

  .hero::before {
    left: 78%;
  }

  .hero-mark {
    right: -170px;
    width: 590px;
    height: 590px;
    opacity: .085;
  }

  h1 {
    font-size: 60px;
  }

  .experience-layout,
  .services-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .experience-layout .section-intro {
    position: static;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid article {
    min-height: 280px;
    border-bottom: 1px solid var(--line-dark);
  }

  .expertise-grid article:nth-child(2) {
    border-right: 0;
  }

  .expertise-grid article:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .expertise-grid article:nth-child(4) {
    border-bottom: 0;
  }

  .project-featured,
  .project-secondary,
  .project-reverse {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .project-reverse .evidence-panel {
    grid-row: 2;
  }

  .project-reverse .project-content {
    grid-row: 1;
  }

  .evidence-panel {
    min-height: 340px;
  }

  .approach-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-list li:nth-child(2) {
    border-right: 0;
  }

  .approach-list li:nth-child(-n+2) {
    border-bottom: 1px solid #c8d0cf;
  }

  .approach-list li:nth-child(3) {
    padding-left: 0;
  }

  .contact-layout,
  .case-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-facts > div:nth-child(3) {
    border-right: 0;
  }

  .case-facts > div:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .site-header-inner,
  .hero-inner {
    width: min(var(--max), calc(100% - 36px));
  }

  .site-header,
  .site-header-inner {
    min-height: 64px;
  }

  .site-header-inner {
    gap: 10px;
  }

  .brand-monogram {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-full {
    display: none;
  }

  .brand-short {
    display: inline;
  }

  .brand-copy small,
  .header-contact,
  .header-resume {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 38px);
  }

  .language-switch button {
    min-height: 44px;
  }

  .mobile-menu-toggle {
    min-height: 40px;
    padding-inline: 9px;
  }

  .hero {
    min-height: min(625px, calc(100svh - 64px));
    padding: 42px 0 48px;
  }

  .hero::before {
    display: none;
  }

  .hero-mark {
    top: 45%;
    right: -210px;
    width: 480px;
    height: 480px;
    opacity: .06;
  }

  .availability {
    margin-bottom: 16px;
    font-size: 12px;
  }

  h1,
  .case-hero h1 {
    max-width: 100%;
    font-size: 43px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-role {
    max-width: 350px;
    font-size: 13px;
  }

  .hero-statement {
    max-width: 360px;
    margin-top: 20px;
    font-size: 23px;
  }

  .hero-summary {
    max-width: 360px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    width: 100%;
  }

  .hero-links {
    gap: 14px;
    margin-top: 18px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid > div,
  .metric-grid > div:first-child {
    min-height: 132px;
    padding: 18px 14px 18px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .metric-grid > div:nth-child(even) {
    padding-right: 0;
    padding-left: 14px;
    border-right: 0;
  }

  .metric-grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .metric-grid strong {
    font-size: 30px;
  }

  .metric-grid span {
    font-size: 12px;
  }

  .project-proof span,
  .case-facts span {
    font-size: 12px;
  }

  .audience-band,
  .experience-band,
  .work-band,
  .expertise-band,
  .services-band,
  .approach-band,
  .contact-band,
  .case-study {
    padding: 74px 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid > div,
  .audience-grid > div + div {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
  }

  .audience-grid > div + div {
    border-top: 1px solid var(--line);
  }

  .audience-grid h2 {
    font-size: 27px;
  }

  .text-link {
    margin-top: 10px;
  }

  .section-intro h2,
  .expertise-heading h2,
  .work-heading h2,
  .approach-heading h2,
  .contact-layout h2,
  .case-heading h2,
  .section-intro.compact h2 {
    font-size: 34px;
  }

  .experience-layout,
  .services-layout {
    gap: 38px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 38px;
  }

  .project {
    gap: 32px;
    padding: 42px 0;
  }

  .project-content h3 {
    font-size: 27px;
  }

  .browser-bar b {
    display: none;
  }

  .project-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-proof div,
  .project-proof div:first-child {
    padding: 14px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .project-proof div:last-child {
    border-right: 0;
  }

  .project-proof div:first-child {
    padding-left: 0;
  }

  .project-proof span {
    font-size: 11px;
  }

  .evidence-panel {
    min-height: 250px;
    padding: 26px;
  }

  .evidence-panel > strong {
    font-size: 38px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .expertise-grid article,
  .expertise-grid article:first-child,
  .expertise-grid article:nth-child(3) {
    min-height: 310px;
    padding: 20px 14px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .expertise-grid article:nth-child(even) {
    border-right: 0;
  }

  .expertise-grid article:nth-child(3),
  .expertise-grid article:last-child {
    border-bottom: 0;
  }

  .expertise-grid h3 {
    margin-top: 30px;
    font-size: 20px;
  }

  .expertise-grid article > p:not(.tech-line) {
    font-size: 14px;
  }

  .expertise-grid .tech-line {
    font-size: 11px;
  }

  .services-list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .approach-list li,
  .approach-list li:first-child,
  .approach-list li:nth-child(3) {
    min-height: 190px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #c8d0cf;
  }

  .approach-list li:last-child {
    border-bottom: 0;
  }

  .contact-email {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .contact-mark {
    right: -180px;
    bottom: -220px;
    width: 460px;
    height: 460px;
  }

  .footer-inner {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .case-hero {
    padding-top: 42px;
  }

  .back-link {
    margin-bottom: 42px;
  }

  .case-hero-inner > p:not(.eyebrow) {
    font-size: 16px;
  }

  .case-index {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .case-index a,
  .case-index a:first-child {
    min-height: 68px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-heading {
    gap: 24px;
    padding-bottom: 36px;
  }

  .case-screenshot,
  .case-evidence-row {
    margin-top: 42px;
  }

  .case-facts,
  .case-evidence-row {
    grid-template-columns: 1fr;
  }

  .case-facts > div,
  .case-facts > div:first-child {
    min-height: 105px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-facts > div:last-child {
    border-bottom: 0;
  }

  .case-body {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .case-body section,
  .case-body section:nth-child(even) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
  }

  .case-body h3 {
    margin-top: 20px;
  }

  .case-stack {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .case-evidence-row .evidence-panel {
    min-height: 210px;
  }

  .error-layout h1 {
    font-size: 42px;
  }
}

@media (max-width: 390px) {
  .mobile-menu-toggle {
    min-height: 44px;
    padding-inline: 7px;
  }

  h1,
  .case-hero h1 {
    font-size: 38px;
  }

  .hero-statement {
    font-size: 21px;
  }

  .hero-links {
    font-size: 12px;
  }
}

@media (max-width: 760px) and (max-height: 650px) {
  .hero {
    min-height: auto;
    padding: 26px 0 30px;
  }

  .hero-mark {
    right: -170px;
    width: 390px;
    height: 390px;
  }

  .availability {
    margin-bottom: 10px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-role {
    margin-top: 8px;
    font-size: 11px;
  }

  .hero-statement {
    margin-top: 12px;
    font-size: 18px;
  }

  .hero-summary,
  .hero-links {
    display: none;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .button {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Impact pass: product proof, writing and motion */
@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  animation: hero-reveal 620ms cubic-bezier(.22, .8, .28, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.has-js [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22, .8, .28, 1);
}

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

.hero {
  min-height: min(650px, calc(100svh - 72px));
  padding: 40px 0 46px;
}

.hero-layout {
  width: min(1360px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 42px;
  margin: 0 auto;
}

.hero-inner {
  width: auto;
  margin: 0;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: 64px;
}

.hero-copy .hero-statement {
  max-width: 650px;
  font-size: 27px;
}

.hero-copy .hero-summary {
  max-width: 620px;
  font-size: 16px;
}

.hero-product-stage {
  position: relative;
  min-width: 0;
  height: 550px;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cbd2d1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 54px rgb(18 22 22 / 16%);
}

.hero-shot img {
  width: 100%;
  height: auto;
}

.hero-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--white);
  background: rgb(9 11 12 / 88%);
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-shot-main {
  z-index: 2;
  top: 76px;
  left: 0;
  width: 76%;
}

.hero-shot-waitlist {
  z-index: 1;
  top: 0;
  right: 0;
  width: 49%;
}

.hero-shot-stats {
  z-index: 3;
  right: 2%;
  bottom: 0;
  width: 52%;
}

.project-visual img,
.project-visual video,
.case-gallery img,
.case-gallery video {
  transition: transform 320ms cubic-bezier(.22, .8, .28, 1);
}

.project:hover .project-visual img,
.project:hover .project-visual video,
.case-gallery figure:hover img,
.case-gallery figure:hover video {
  transform: scale(1.012);
}

.project-link > span[aria-hidden="true"],
.text-link > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 180ms ease;
}

.project-link:hover > span[aria-hidden="true"],
.text-link:hover > span[aria-hidden="true"] {
  transform: translateX(5px);
}

.proof-visual {
  aspect-ratio: 8 / 5;
  background: var(--paper);
}

.proof-visual img,
.proof-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-visual-dark {
  background: var(--ink-deep);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.case-gallery figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.case-gallery figure:first-child {
  grid-column: 1 / -1;
}

.case-gallery img,
.case-gallery video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 1px solid var(--line);
}

.case-gallery video {
  aspect-ratio: 16 / 9;
}

.case-gallery figcaption {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px 18px;
}

.case-gallery figcaption strong {
  color: var(--magenta);
  font-size: 11px;
  text-transform: uppercase;
}

.case-gallery figcaption span {
  color: var(--ink-soft);
  font-size: 13px;
}

.insights-band {
  padding: 106px 0 112px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insights-heading,
.writing-hero-layout {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 88px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.insights-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: 45px;
  line-height: 1.08;
}

.insights-heading > p,
.writing-hero-layout > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-list article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 36px 42px 38px 0;
  border-right: 1px solid var(--line);
}

.article-list article + article {
  padding-right: 0;
  padding-left: 42px;
  border-right: 0;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-list h2,
.article-list h3 {
  margin: 40px 0 0;
  font-size: 30px;
  line-height: 1.15;
}

.article-list article > p:not(.article-meta) {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.article-list .project-link {
  margin-top: auto;
  padding-top: 28px;
}

.articles-all {
  margin-top: 28px;
}

.writing-hero {
  padding: 72px 0 0;
  background: var(--paper);
}

.writing-hero .back-link {
  margin-bottom: 62px;
}

.writing-hero h1 {
  max-width: 780px;
  font-size: 62px;
  line-height: 1.02;
}

.writing-index {
  padding: 62px 0 112px;
  background: var(--white);
}

.article-list-index {
  margin-top: 0;
}

.article-shell {
  width: min(820px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.article-hero {
  padding: 72px 0 76px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-hero .back-link {
  margin-bottom: 58px;
}

.article-hero h1 {
  max-width: 810px;
  font-size: 58px;
  line-height: 1.04;
}

.article-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
}

.article-byline {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 13px;
}

.article-byline strong {
  color: var(--ink);
}

.article-content {
  padding-top: 78px;
  padding-bottom: 80px;
  color: #2b3032;
  font-size: 18px;
  line-height: 1.72;
}

.article-content h2 {
  margin: 70px 0 20px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.14;
}

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

.article-content ul,
.article-content ol {
  margin: 24px 0 0;
  padding-left: 24px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-principle {
  margin: 0 !important;
  padding: 26px 28px;
  border-left: 6px solid var(--magenta);
  color: var(--ink) !important;
  background: var(--mist);
  font-size: 23px;
  font-weight: 760;
  line-height: 1.42;
}

.article-figure {
  width: min(1100px, calc(100vw - 48px));
  margin: 62px 0 60px 50%;
  transform: translateX(-50%);
}

.article-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-figure figcaption {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.article-code {
  overflow-x: auto;
  margin: 30px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--cyan);
  border-radius: var(--radius);
  color: #e5ecee;
  background: var(--ink-deep);
  font-size: 14px;
  line-height: 1.6;
}

.article-code code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.article-content code:not(.article-code code) {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--mist);
  font-size: .9em;
}

.article-next {
  display: grid;
  gap: 12px;
  margin-bottom: 92px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-next > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-next a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: none;
}

.article-next a:hover {
  color: var(--cyan-dark);
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-product-stage {
    height: 500px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-product-stage {
    width: min(760px, 100%);
    height: 510px;
  }

  .insights-heading,
  .writing-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 28px 0 24px;
  }

  .hero-layout {
    width: calc(100% - 36px);
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy .hero-statement {
    margin-top: 16px;
    font-size: 22px;
  }

  .hero-copy .hero-summary,
  .hero-copy .hero-links {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 42px;
  }

  .hero-product-stage {
    height: 210px;
  }

  .hero-shot-main {
    top: 0;
    left: 0;
    width: 100%;
  }

  .hero-shot-waitlist,
  .hero-shot-stats {
    display: none;
  }

  .hero-shot figcaption {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .case-gallery figure:first-child {
    grid-column: auto;
  }

  .case-gallery figcaption {
    min-height: 76px;
  }

  .insights-band,
  .writing-index {
    padding: 72px 0;
  }

  .insights-heading h2,
  .writing-hero h1,
  .article-hero h1 {
    font-size: 38px;
  }

  .article-list {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .article-list article,
  .article-list article + article {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-list article:last-child {
    border-bottom: 0;
  }

  .article-list h2,
  .article-list h3 {
    margin-top: 26px;
    font-size: 26px;
  }

  .article-list .project-link {
    margin-top: 26px;
    padding-top: 0;
  }

  .writing-hero,
  .article-hero {
    padding-top: 42px;
  }

  .writing-hero .back-link,
  .article-hero .back-link {
    margin-bottom: 38px;
  }

  .article-shell {
    width: calc(100% - 36px);
  }

  .article-lede {
    font-size: 18px;
  }

  .article-content {
    padding-top: 54px;
    padding-bottom: 58px;
    font-size: 17px;
  }

  .article-content h2 {
    margin-top: 52px;
    font-size: 29px;
  }

  .article-principle {
    padding: 22px 20px;
    font-size: 20px;
  }

  .article-figure {
    width: calc(100vw - 36px);
    margin-top: 46px;
    margin-bottom: 44px;
  }

  .article-figure figcaption {
    text-align: left;
  }

  .article-next a {
    align-items: flex-start;
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1,
  .writing-hero h1,
  .article-hero h1 {
    font-size: 35px;
  }

  .hero-product-stage {
    height: 184px;
  }
}

@media (max-width: 760px) and (max-height: 650px) {
  .hero-product-stage {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .has-js [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
