@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Latin-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/SourceSans3-Latin-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("/assets/fonts/DMMono-Latin-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --canvas: #f7f4ee;
  --raised: #ffffff;
  --sunken: #ece9e2;
  --ink: #11131a;
  --text-secondary: #4e5361;
  --text-tertiary: #646a78;
  --line: #d7d2c9;
  --line-strong: #4e5361;
  --accent: #5e4ee5;
  --accent-hover: #5141d2;
  --accent-active: #4434b8;
  --accent-soft: #e7e3ff;
  --accent-text: #f7f4ee;
  --focus: #6c5cff;
  --brand-carbon: #11131a;
  --brand-warm-white: #f7f4ee;
  --brand-violet-soft: #e7e3ff;
  --brand-apricot: #ff9a70;
  --brand-apricot-deep: #a84625;
  --brand-apricot-soft: #ffe4d9;
  --stage-raised: #1c1f29;
  --stage-line: #353947;
  --stage-secondary: #b9b3ff;
  --shadow-low: 0 1px 2px rgb(17 19 26 / 8%);
  --shadow-media: 0 24px 64px rgb(17 19 26 / 13%);
  --font-display: "Plus Jakarta Sans", "Avenir Next", Avenir, system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #11131a;
    --raised: #1c1f29;
    --sunken: #090b10;
    --ink: #f7f4ee;
    --text-secondary: #b9b3ff;
    --text-tertiary: #a6a7b0;
    --line: #353947;
    --line-strong: #f7f4ee;
    --accent: #55b8ff;
    --accent-hover: #83ceff;
    --accent-active: #b6e3ff;
    --accent-soft: #173a4d;
    --accent-text: #11131a;
    --focus: #6c5cff;
    --shadow-low: 0 1px 2px rgb(0 0 0 / 24%);
    --shadow-media: 0 24px 64px rgb(0 0 0 / 38%);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--accent-text);
  background: var(--accent);
  font-weight: 700;
  transform: translateY(-80px);
  transition: transform 120ms var(--ease);
}

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

.shell {
  width: min(1240px, calc(100% - 128px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  background: color-mix(in srgb, var(--canvas) 94%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 178px;
  min-width: 136px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.nav-link,
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.nav-link:is(:hover, :focus-visible),
.site-footer a:is(:hover, :focus-visible) {
  color: var(--ink);
}

.button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 120ms var(--ease), background-color 120ms ease, border-color 120ms ease;
}

.button-primary {
  color: var(--accent-text);
  background: var(--accent);
  border-color: var(--accent);
}

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

.button:active {
  transform: scale(0.98);
}

.button-primary:active {
  background: var(--accent-active);
  border-color: var(--accent-active);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.button-secondary:is(:hover, :focus-visible) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

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

.button-promotional {
  color: var(--brand-carbon);
  border-color: var(--brand-apricot);
  background: var(--brand-apricot);
}

.button-promotional:is(:hover, :focus-visible) {
  color: var(--brand-carbon);
  border-color: var(--brand-apricot-soft);
  background: var(--brand-apricot-soft);
}

.button-promotional:active {
  color: var(--brand-warm-white);
  border-color: var(--brand-apricot-deep);
  background: var(--brand-apricot-deep);
}

.action-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 1em;
  line-height: 1;
  transition: transform 120ms var(--ease);
}

a:is(:hover, :focus-visible) .action-arrow {
  transform: translate(2px, -2px);
}

.hero-action:is(:hover, :focus-visible) .action-arrow {
  transform: translateY(2px);
}

.button-short {
  display: none;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  padding-block: 48px 56px;
}

.hero-copy {
  min-width: 0;
  max-width: 520px;
}

.eyebrow,
.project-sector,
.project-number,
.project-meta,
.hero-library-meta {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.33;
  text-transform: uppercase;
}

.hero h1,
.work-heading h2,
.project-title-block h2,
.conversion h2,
.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 550;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(3.35rem, 5vw, 4.5rem);
  line-height: 1.01;
}

.hero-lead {
  max-width: 44ch;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.45;
}

.hero-action {
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr 1.5fr;
  gap: 16px;
  margin: 32px 0 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 2px;
}

.hero-facts strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-facts span,
.portfolio-note {
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.35;
}

.portfolio-note {
  max-width: 48ch;
  margin: 14px 0 0;
}

.hero-library {
  min-width: 0;
  min-height: 560px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--stage-line);
  border-radius: 20px;
  background: var(--brand-carbon);
  box-shadow: var(--shadow-media);
}

.hero-library-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--stage-secondary);
}

.hero-library-cards {
  position: relative;
  height: 500px;
  margin-top: 16px;
}

.hero-browser {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--stage-line);
  border-radius: 12px;
  color: var(--brand-carbon);
  background: var(--brand-warm-white);
  box-shadow: 0 24px 64px rgb(0 0 0 / 32%);
  text-decoration: none;
  transition: transform 200ms var(--ease), border-color 120ms ease;
}

.hero-browser-primary {
  top: 0;
  left: 0;
  z-index: 1;
  width: 88%;
}

.hero-browser-secondary {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 66%;
}

.hero-browser:is(:hover, :focus-visible) {
  z-index: 3;
  border-color: var(--accent);
  transform: translateY(-4px);
}

.hero-browser picture {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d7d2c9;
  aspect-ratio: 1366 / 768;
}

.hero-browser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-browser-label {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 13px;
}

.hero-browser-label > span:first-child {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.hero-browser-label small {
  color: #646a78;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-browser-label strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-browser-open {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.work {
  padding-block: 112px;
}

.work-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.work-heading > div {
  grid-column: 1 / span 6;
}

.work-heading > p {
  grid-column: 8 / -1;
  max-width: 54ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}

.work-heading h2 {
  max-width: 14ch;
  margin-top: 14px;
  font-size: clamp(2.7rem, 4.3vw, 3.6rem);
  line-height: 1.06;
}

.project {
  padding-block: 64px;
  border-top: 1px solid var(--line);
}

.project-header,
.project-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.project-header {
  align-items: end;
  margin-bottom: 28px;
}

.project-number {
  grid-column: 1;
  align-self: start;
  padding-top: 7px;
}

.project-title-block {
  grid-column: 2 / span 7;
}

.project-title-block h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.project-meta {
  grid-column: 10 / -1;
  display: grid;
  justify-items: end;
  gap: 7px;
  color: var(--text-tertiary);
  text-align: right;
}

.project-layout {
  align-items: center;
}

.project-media {
  position: relative;
  grid-column: 1 / span 9;
  min-width: 0;
  display: block;
  padding: 18px 18px 72px;
  overflow: hidden;
  border: 1px solid var(--stage-line);
  border-radius: 12px;
  background: var(--brand-carbon);
  box-shadow: var(--shadow-low);
  text-decoration: none;
  transition: transform 200ms var(--ease), border-color 120ms ease, box-shadow 200ms ease;
}

.project-media:is(:hover, :focus-visible) {
  border-color: var(--accent);
  box-shadow: var(--shadow-media);
  transform: translateY(-3px);
}

.project-desktop-preview {
  width: 91%;
  display: block;
  overflow: hidden;
  border: 1px solid var(--stage-line);
  border-radius: 8px;
  background: var(--brand-warm-white);
  transition: transform 200ms var(--ease);
}

.project-desktop-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 1366 / 768;
  object-fit: cover;
  object-position: top;
}

.project-mobile-preview {
  position: absolute;
  top: 15%;
  right: 18px;
  width: 18%;
  display: block;
  overflow: hidden;
  border: 1px solid var(--stage-line);
  border-radius: 8px;
  background: var(--brand-warm-white);
  box-shadow: 0 20px 44px rgb(0 0 0 / 38%);
  transition: transform 200ms var(--ease);
}

.project-mobile-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top;
}

.project-media:is(:hover, :focus-visible) .project-desktop-preview {
  transform: translateX(2px);
}

.project-media:is(:hover, :focus-visible) .project-mobile-preview {
  transform: translateY(-4px);
}

.project-media-label {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--brand-warm-white);
  font-weight: 750;
}

.project-copy {
  grid-column: 10 / -1;
  min-width: 0;
}

.project-copy > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}

.project-capabilities {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.project-capabilities li {
  padding-left: 4px;
}

.project-capabilities li::marker {
  color: var(--accent);
}

.project-action {
  width: 100%;
  margin-top: 28px;
}

.conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
  margin-bottom: 112px;
  padding: 56px;
  border: 1px solid var(--stage-line);
  border-radius: 20px;
  color: var(--brand-warm-white);
  background: var(--brand-carbon);
  box-shadow: var(--shadow-low);
}

.conversion .eyebrow {
  color: var(--brand-apricot);
}

.conversion h2 {
  max-width: 18ch;
  margin-top: 14px;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
}

.conversion p:not(.eyebrow) {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--stage-secondary);
  font-size: 18px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-shell span {
  margin-right: auto;
}

.not-found-page {
  min-height: 100dvh;
  display: grid;
  align-items: center;
}

.not-found {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding-block: 64px;
}

.not-found h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

@media (max-width: 74.99rem) {
  .shell {
    width: min(100% - 80px, 1120px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.2vw, 3.8rem);
  }

  .hero-library {
    min-height: 500px;
  }

  .hero-library-cards {
    height: 440px;
  }

  .project-media {
    grid-column: 1 / span 8;
  }

  .project-copy {
    grid-column: 9 / -1;
  }
}

@media (max-width: 56rem) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5.7vw, 3.25rem);
  }

  .hero-lead,
  .work-heading > p,
  .project-copy > p,
  .conversion p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-library {
    min-height: 430px;
    padding: 16px;
  }

  .hero-library-cards {
    height: 375px;
  }

  .project-title-block {
    grid-column: 2 / span 6;
  }

  .project-meta {
    grid-column: 9 / -1;
  }

  .project-media {
    grid-column: 1 / span 8;
  }

  .project-copy {
    grid-column: 9 / -1;
  }

  .project-action {
    padding-inline: 12px;
  }
}

@media (max-width: 47.99rem) {
  .shell {
    width: calc(100% - 48px);
  }

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

  .nav-shell {
    gap: 12px;
  }

  .brand {
    width: 136px;
    flex: 0 0 136px;
  }

  .site-header nav {
    min-width: 0;
    gap: 8px;
  }

  .nav-link,
  .button-long {
    display: none;
  }

  .button-short {
    display: inline;
  }

  .nav-preview {
    min-height: 44px;
    padding: 9px 13px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 44px 56px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 11ch;
    margin-top: 14px;
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 18px;
    line-height: 1.5;
  }

  .hero-action {
    min-height: 48px;
    margin-top: 22px;
  }

  .hero-facts {
    grid-template-columns: 0.7fr 0.9fr 1.5fr;
    gap: 10px;
    margin-top: 24px;
    padding-block: 14px;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .hero-facts span {
    font-size: 11px;
  }

  .portfolio-note {
    font-size: 12px;
  }

  .hero-library {
    min-height: 0;
    padding: 14px;
  }

  .hero-library-cards {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .hero-browser,
  .hero-browser-primary,
  .hero-browser-secondary {
    position: static;
    width: auto;
    transform: none;
  }

  .hero-browser:is(:hover, :focus-visible) {
    transform: translateY(-2px);
  }

  .hero-browser-label {
    min-height: 48px;
    padding: 8px 9px;
  }

  .hero-browser-label > span:first-child {
    display: grid;
    gap: 2px;
  }

  .hero-browser-label strong {
    font-size: 12px;
    line-height: 1.12;
    white-space: normal;
  }

  .hero-browser-open {
    font-size: 0;
  }

  .hero-browser-open .action-arrow {
    margin: 0;
    font-size: 14px;
  }

  .work {
    padding-block: 72px;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .work-heading > div,
  .work-heading > p {
    grid-column: 1;
  }

  .work-heading h2 {
    margin-top: 10px;
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .project {
    padding-block: 48px;
  }

  .project-header,
  .project-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .project-header {
    margin-bottom: 24px;
  }

  .project-number {
    grid-column: 1;
  }

  .project-title-block {
    grid-column: 2 / -1;
  }

  .project-title-block h2 {
    font-size: 2rem;
  }

  .project-meta {
    grid-column: 2 / -1;
    justify-items: start;
    text-align: left;
  }

  .project-media,
  .project-copy {
    grid-column: 1 / -1;
  }

  .project-media {
    padding: 10px 10px 58px;
  }

  .project-desktop-preview {
    width: 100%;
  }

  .project-mobile-preview {
    display: none;
  }

  .project-media-label {
    right: 12px;
    left: 12px;
    min-height: 52px;
    font-size: 14px;
  }

  .project-copy {
    margin-top: 8px;
  }

  .project-capabilities {
    margin-top: 18px;
  }

  .project-action {
    margin-top: 22px;
  }

  .conversion {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
    padding: 36px 24px;
  }

  .conversion h2 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .conversion .button {
    width: 100%;
  }

  .footer-shell {
    min-height: 0;
    flex-wrap: wrap;
    gap: 4px 20px;
    padding-block: 24px;
  }

  .footer-shell span {
    width: 100%;
  }
}

@media (max-width: 22rem) {
  .shell {
    width: calc(100% - 40px);
  }

  .nav-preview {
    padding-inline: 10px;
  }

  .hero {
    gap: 26px;
    padding-block: 36px 48px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-facts {
    grid-template-columns: 0.7fr 0.9fr 1.35fr;
    gap: 7px;
  }

  .hero-library-meta {
    font-size: 10px;
  }

  .hero-browser-label {
    min-height: 44px;
    padding: 6px 7px;
  }

  .hero-browser-label small {
    display: none;
  }

  .hero-browser-label strong {
    font-size: 11px;
  }
}

@media (max-height: 40rem) and (max-width: 47.99rem) {
  .hero {
    gap: 18px;
    padding-block: 24px 40px;
  }

  .hero h1 {
    margin-top: 10px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-action {
    margin-top: 18px;
  }

  .hero-facts {
    margin-top: 18px;
    padding-block: 10px;
  }

  .portfolio-note {
    display: none;
  }

  .hero-library {
    padding: 10px;
  }

  .hero-library-cards {
    gap: 8px;
    margin-top: 8px;
  }
}

@media (max-height: 40rem) and (min-width: 48rem) {
  .hero {
    min-height: 0;
    padding-block: 32px 40px;
  }

  .hero-library {
    min-height: 430px;
  }

  .hero-library-cards {
    height: 375px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 80ms !important;
    animation-duration: 80ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-browser,
  .project-media,
  .project-desktop-preview,
  .project-mobile-preview,
  .action-arrow,
  .button {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--canvas);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (forced-colors: active) {
  .site-header,
  .project-media,
  .hero-browser,
  .hero-library,
  .conversion,
  .button {
    border: 1px solid ButtonText;
    forced-color-adjust: auto;
  }
}
