:root {
  color-scheme: dark;
  --bg: #426be0;
  --surface: #101014;
  --surface-2: #15151b;
  --ink: #f5f3ef;
  --muted: #aaa8b2;
  --line: rgba(255, 255, 255, .12);
  --pink: #f4519a;
  --blue: #4774ed;
  --coral: #ff987d;
  --glass-edge: rgba(255, 255, 255, .38);
  --glass-shadow: rgba(12, 10, 31, .24);
  --radius-xl: clamp(1.7rem, 3vw, 3rem);
  --radius-lg: clamp(1.25rem, 2vw, 2rem);
  --page: min(94vw, 1440px);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  background: var(--bg) url("assets/gradient.svg") center / 116vw 116vh no-repeat fixed;
  scrollbar-color: rgba(255, 255, 255, .5) transparent;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  overscroll-behavior: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

/* Safari paints the scrollbar gutter outside the page's background image. */
@supports selector(::-webkit-scrollbar) {
  html { scrollbar-color: auto; }
}
html::-webkit-scrollbar {
  width: 12px;
  background: var(--bg) url("assets/gradient.svg") right -8vw top -8vh / 116vw 116vh no-repeat;
}
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  background-clip: padding-box;
}

main,
.footer { position: relative; z-index: 1; }

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

.sr-only {
  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;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--page); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(88vw, 1320px);
  min-height: 3.8rem;
  padding: .55rem .65rem .55rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  transform: translateX(-50%);
  transition: background-color .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px rgba(255, 255, 255, .28), 0 14px 40px var(--glass-shadow);
  text-shadow: 0 1px 14px rgba(6, 7, 20, .42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 8.5rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.5rem);
  font-size: .87rem;
  font-weight: 520;
}

.site-nav a,
.footer a { transition: opacity .2s ease; }
.site-nav a:hover,
.footer a:hover { opacity: .65; }

.header-cta { justify-self: end; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 3.25rem;
  padding: .5rem .55rem .5rem 1.25rem;
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: -.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    inset 0 -1px 0 rgba(255, 255, 255, .1),
    inset 0 0 18px rgba(255, 255, 255, .08),
    0 12px 34px var(--glass-shadow);
  transform: translateZ(0);
  -webkit-backdrop-filter: blur(18px) saturate(185%) contrast(1.04);
  backdrop-filter: blur(18px) saturate(185%) contrast(1.04);
  contain: paint;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -45% -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 8%, rgba(255, 255, 255, .52), transparent 34%),
    linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, .2) 48%, transparent 62%);
  opacity: .65;
  transform: translateX(-28%) rotate(-4deg);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), opacity .3s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: inset 0 1px rgba(255, 255, 255, .55), inset 0 0 24px rgba(255, 255, 255, .12), 0 16px 42px rgba(12, 10, 31, .3); }
.button:active { transform: scale(.97); transition-duration: .08s; }
.button:hover::before { opacity: .95; transform: translateX(24%) rotate(-4deg); }
.button--light { background: rgba(255, 255, 255, .48); color: #09090c; }
.button--dark { background: rgba(10, 10, 18, .48); color: #fff; }
.button--large { min-height: 4.1rem; padding-left: 1.65rem; font-size: 1rem; }

.button-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(8, 8, 14, .72);
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, .25), 0 4px 12px rgba(0, 0, 0, .16);
}

.button--dark .button-icon { background: rgba(255, 255, 255, .88); color: #09090c; }

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px rgba(255, 255, 255, .38), inset 0 0 14px rgba(255, 255, 255, .08), 0 10px 28px var(--glass-shadow);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: .28rem auto;
  background: #fff;
  transition: transform .25s ease;
}

.hero { padding-top: clamp(.7rem, 1.3vw, 1.25rem); }

.hero-panel {
  display: grid;
  place-items: center;
  min-height: min(950px, calc(100svh - 1.4rem));
  padding-block: 9rem 6rem;
}

.gradient-field {
  position: absolute;
  inset: 0;
}

.gradient-field { overflow: hidden; }

.site-backdrop {
  position: fixed;
  z-index: 0;
  inset: 0 0 auto;
  /* Paint the full mobile viewport before Safari retracts its toolbars. */
  height: 100vh;
  height: 100lvh;
  transform: translateZ(0);
  pointer-events: none;
  background: linear-gradient(135deg, #426be0, #526ddc 45%, #3767e6);
}

.site-backdrop::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 18, .02), rgba(7, 8, 18, .2));
}

.gradient-field::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -4px;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' seed='19' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Original SVG shapes, separated by color: only the colored layers move. */
.fluid-layer {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform-origin: 50% 50%;
}

.fluid-layer:not(.fluid-layer--blue) {
  will-change: transform;
  /* Feather the SVG viewport edges when a layer rotates into view. */
  mask-image: linear-gradient(90deg, transparent, #000 14% 86%, transparent), linear-gradient(0deg, transparent, #000 14% 86%, transparent);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14% 86%, transparent), linear-gradient(0deg, transparent, #000 14% 86%, transparent);
  -webkit-mask-composite: source-in;
}
.fluid-layer--violet { animation: fluid-violet 27s ease-in-out -9s infinite alternate; }
.fluid-layer--magenta { animation: fluid-magenta 24s ease-in-out -15s infinite alternate; }
.fluid-layer--rose { animation: fluid-rose 21s ease-in-out -6s infinite alternate; }
.fluid-layer--coral { animation: fluid-coral 25.5s ease-in-out -12s infinite alternate; }
.fluid-layer--gold { animation: fluid-gold 18s ease-in-out -3s infinite alternate; }

@keyframes fluid-violet {
  0% { transform: translate3d(-5%, 14%, 0) rotate(-8deg) scale(1.12, .9); }
  50% { transform: translate3d(22%, -8%, 0) rotate(4deg) scale(.95, 1.14); }
  100% { transform: translate3d(8%, -20%, 0) rotate(10deg) scale(1.16, .94); }
}

@keyframes fluid-magenta {
  0% { transform: translate3d(-18%, 8%, 0) rotate(9deg) scale(.92, 1.12); }
  50% { transform: translate3d(6%, -12%, 0) rotate(-5deg) scale(1.12, .9); }
  100% { transform: translate3d(-12%, 20%, 0) rotate(-12deg) scale(1.04, 1.15); }
}

@keyframes fluid-rose {
  0% { transform: translate3d(-14%, 10%, 0) rotate(-9deg) skewX(-7deg) scale(1.12, .88); }
  50% { transform: translate3d(10%, 32%, 0) rotate(5deg) skewX(5deg) scale(.95, 1.16); }
  100% { transform: translate3d(-12%, -18%, 0) rotate(12deg) skewX(-3deg) scale(1.08, .94); }
}

@keyframes fluid-coral {
  0% { transform: translate3d(10%, 0%, 0) rotate(8deg) scale(.92, 1.2); }
  50% { transform: translate3d(-30%, 15%, 0) rotate(-7deg) scale(1.15, .88); }
  100% { transform: translate3d(-10%, 48%, 0) rotate(-12deg) scale(1.04, 1.12); }
}

@keyframes fluid-gold {
  0% { transform: translate3d(-30%, 30%, 0) rotate(-12deg) scale(1.2, .85); }
  50% { transform: translate3d(5%, 52%, 0) rotate(4deg) scale(.88, 1.2); }
  100% { transform: translate3d(18%, -2%, 0) rotate(12deg) scale(1.15, .94); }
}

.page-hidden .fluid-layer { animation-play-state: paused; }

.hero-content {
  width: min(90%, 1000px);
  text-align: center;
}

.eyebrow,
.section-index {
  margin: 0 0 1.5rem;
  font-size: .73rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .025em;
  text-transform: none;
  color: rgba(255, 255, 255, .85);
}

.eyebrow span { opacity: .5; }

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

h1,
h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.06;
  font-kerning: normal;
}

h1 { font-size: clamp(3rem, 6.6vw, 6.6rem); }
h1 em,
h2 em {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.12;
}

h1 em { margin-top: .1em; font-size: 1.08em; }

.hero-copy {
  max-width: 660px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section[id] { scroll-margin-top: 5rem; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, .65fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-index { align-self: start; color: rgba(255, 255, 255, .72); }
.section-heading h2 { font-size: clamp(2.8rem, 5.2vw, 5.5rem); }

.carousel {
  --card-width: clamp(320px, 42vw, 600px);
  --browser-height: 1rem;
  position: relative;
  overflow: hidden;
  padding-block: 1rem;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  outline: none;
}

.carousel:focus-visible { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--pink); }
.carousel.is-dragging { cursor: grabbing; }

.carousel-stage {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 34vw, 460px);
  overflow: hidden;
  perspective: 100em;
  mask-image: linear-gradient(90deg, transparent 2%, #000 27% 73%, transparent 98%);
  -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 27% 73%, transparent 98%);
}

.carousel-ring {
  display: grid;
  place-items: center;
  width: var(--card-width);
  transform-style: preserve-3d;
  will-change: transform;
}

.project-card {
  position: relative;
  grid-area: 1 / 1;
  width: var(--card-width);
  height: calc(var(--card-width) * .625 + var(--browser-height));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: .65rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .08), transparent 35%),
    linear-gradient(135deg, #1b1b22, #0f0f14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.project-card:nth-child(2n) { background: linear-gradient(145deg, #17171f, #0c0c10); }
.project-card:nth-child(3n) { background: radial-gradient(circle at 25% 80%, rgba(244, 81, 154, .08), transparent 40%), #111117; }

.project-card::after {
  content: "";
  position: absolute;
  inset: calc(var(--browser-height) + .4rem) .4rem .4rem;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .015);
}

.browser-bar {
  display: flex;
  gap: .35rem;
  align-items: center;
  height: var(--browser-height);
  padding-inline: .65rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.project-card--preview::after { content: none; }
.project-preview {
  display: block;
  width: 100%;
  height: calc(100% - var(--browser-height));
  object-fit: contain;
  background: #f8f5e9;
  pointer-events: none;
}
.browser-bar span { width: .25rem; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .24); }

.project-card strong {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, .22);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, .3);
}

.service-list article {
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.service-list article + article { border-left: 1px solid rgba(255, 255, 255, .3); }
.service-list span { color: rgba(255, 255, 255, .68); font-size: .72rem; letter-spacing: .14em; }
.service-list h3 { margin: 4rem 0 .8rem; font-size: clamp(2rem, 3vw, 3.25rem); font-weight: 520; letter-spacing: -.045em; line-height: 1; }
.service-list p { max-width: 23rem; margin: 0; color: rgba(255, 255, 255, .78); line-height: 1.6; }

.service-note {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
}

.service-note p { margin: 0; }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}
.carousel-controls button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(16, 16, 25, .18);
  cursor: pointer;
  font-size: .8rem;
}
.carousel-controls button:hover { background: rgba(16, 16, 25, .35); }
.carousel-controls button:active { transform: scale(.97); }
a:focus-visible, button:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .3);
}
.about-intro {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
  text-wrap: pretty;
}
.about-copy { max-width: 36rem; }
.about-copy p { margin: 0 0 1.4rem; color: rgba(255, 255, 255, .85); line-height: 1.75; text-wrap: pretty; }

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 0;
}

.contact { padding-top: 0; }
.contact-panel { display: grid; place-items: center; min-height: min(580px, 64svh); padding: 4rem 1.5rem; text-align: center; background: transparent; }
.contact-panel h2 { font-size: clamp(3rem, 7vw, 7rem); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: clamp(2rem, 5vw, 4rem); }
.contact-actions .button:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.contact-note { margin: 1.25rem 0 0; font-size: .76rem; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 8rem;
  padding-block: 2rem;
  border-top: 0;
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
}
.footer .brand { color: #fff; }
.footer p { margin: 0; }
.footer p:last-child { justify-self: end; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; width: min(90vw, 1320px); }
  .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 5.5rem;
    right: 3vw;
    left: 3vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .7rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 1.5rem;
    background: rgba(13, 13, 22, .58);
    box-shadow: inset 0 1px rgba(255, 255, 255, .22), inset 0 0 28px rgba(255, 255, 255, .05), 0 30px 80px rgba(0, 0, 0, .38);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.7rem) scale(.98);
    transform-origin: top;
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 1rem 1.1rem; border-radius: 1rem; font-size: 1.1rem; }
  .site-nav a:hover { background: rgba(255, 255, 255, .06); opacity: 1; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(.14rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-.14rem) rotate(-45deg); }

  .hero-panel { min-height: calc(100svh - 1rem); }
  .section-heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .section-heading h2 { max-width: 19ch; }
  .carousel { --card-width: clamp(300px, 58vw, 480px); }
  .carousel-stage { min-height: 340px; perspective: 85em; }
}

@media (max-width: 620px) {
  :root { --page: calc(100vw - 1.1rem); }
  .site-header { top: 1rem; min-height: 3.35rem; padding-left: .9rem; }
  .brand-logo { width: 7rem; }
  .hero { padding-top: .55rem; }
  .hero-panel { border-radius: 1.75rem; }
  .hero-content { width: 94%; }
  h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .eyebrow { margin-bottom: 1.5rem; font-size: .75rem; gap: .55rem; }
  .hero-copy { width: 94%; margin-top: 1.3rem; font-size: .95rem; }
  .hero-actions { flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
  .section { padding-block: 4.5rem; }
  .section-heading { margin-bottom: 3rem; }
  .section-heading h2 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .about-body { grid-template-columns: 1fr; }
  .carousel-stage {
    min-height: 260px;
    perspective: 60em;
    mask-image: linear-gradient(90deg, transparent, #000 28% 72%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28% 72%, transparent);
  }
  .carousel { --card-width: min(82vw, 380px); --browser-height: .8rem; }
  .project-card { border-radius: .4rem; }
  .project-card strong { right: .75rem; bottom: .55rem; font-size: 2rem; }
  .contact-panel { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article { min-height: 0; padding: 1.5rem .25rem 2rem; }
  .service-list article + article { border-top: 1px solid rgba(255, 255, 255, .3); border-left: 0; }
  .service-list h3 { margin-top: 2.5rem; }
  .service-note { align-items: flex-start; flex-direction: column; }
  .contact-panel { min-height: 480px; }
  .contact-panel h2 { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .footer { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
  .footer p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .button::before { transition: none; }
  .fluid-layer { animation: none !important; transform: none; will-change: auto; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-nav,
  .menu-toggle { background: #111116; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .button { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .button--light { background: #f5f3ef; }
  .button--dark { background: #111116; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, .34); --muted: #d3d1d8; }
}
