:root {
  --lux-ink: #090b0d;
  --lux-ink-soft: #12161a;
  --lux-paper: #f1f2ef;
  --lux-white: #ffffff;
  --lux-red: #ff4e45;
  --lux-lime: #d9ff5b;
  --lux-blue: #79a9ff;
  --lux-yellow: #ffd75a;
  --lux-muted: #aeb4ba;
  --lux-line: rgba(255, 255, 255, 0.18);
  --lux-glass: rgba(16, 20, 24, 0.62);
  --lux-glass-light: rgba(255, 255, 255, 0.74);
  --lux-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

html {
  background: var(--lux-ink);
}

body.lux-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--lux-ink);
  color: var(--lux-paper);
  font-family: "Manrope", Arial, sans-serif;
  font-kerning: normal;
  letter-spacing: 0;
}

body.lux-site *,
body.lux-site *::before,
body.lux-site *::after {
  box-sizing: border-box;
}

body.lux-site ::selection {
  color: var(--lux-ink);
  background: var(--lux-lime);
}

body.lux-site img,
body.lux-site video {
  display: block;
  max-width: 100%;
}

body.lux-site a {
  color: inherit;
}

.lux-container,
body.lux-site .studio-container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--lux-glass);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--lux-shadow);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

body.lux-site .page-progress {
  position: fixed;
  z-index: 140;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

body.lux-site .page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lux-red);
}

body.lux-site .site-header {
  position: fixed;
  z-index: 120;
  top: 18px;
  left: 50%;
  width: min(1280px, calc(100% - 48px));
  min-height: 66px;
  padding: 9px 10px 9px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(12, 15, 18, 0.64);
  color: var(--lux-white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

body.lux-site .site-header.is-scrolled {
  background: rgba(8, 10, 12, 0.84);
  border-color: rgba(255, 255, 255, 0.16);
}

body.lux-site .brand-lockup {
  gap: 10px;
  color: var(--lux-white);
  font-size: 0.88rem;
  font-weight: 700;
}

body.lux-site .brand-mark {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
}

body.lux-site .brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.lux-site .main-nav {
  gap: 4px;
}

body.lux-site .main-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

body.lux-site .main-nav a::after {
  display: none;
}

body.lux-site .main-nav a:hover,
body.lux-site .main-nav a[aria-current="page"] {
  color: var(--lux-white);
  background: rgba(255, 255, 255, 0.1);
}

body.lux-site .nav-action {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--lux-white);
  color: var(--lux-ink);
  font-size: 0.78rem;
  font-weight: 750;
}

body.lux-site .nav-action:hover {
  background: var(--lux-lime);
  color: var(--lux-ink);
}

.lux-eyebrow,
body.lux-site .studio-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lux-eyebrow > span,
body.lux-site .studio-kicker::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--lux-red);
  content: "";
  box-shadow: 0 0 18px rgba(255, 78, 69, 0.75);
}

.lux-button,
body.lux-site .studio-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lux-button:hover,
body.lux-site .studio-button:hover {
  transform: translateY(-2px);
}

body.lux-site .lux-button-light {
  background: var(--lux-white);
  color: var(--lux-ink);
}

.lux-button-light:hover {
  background: var(--lux-lime);
}

.lux-button-accent {
  border-color: var(--lux-red);
  background: var(--lux-red);
  color: var(--lux-white);
}

.lux-button-accent:hover {
  border-color: var(--lux-lime);
  background: var(--lux-lime);
  color: var(--lux-ink);
}

.lux-link,
body.lux-site .studio-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--lux-ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.lux-link-light {
  color: var(--lux-white);
}

.lux-hero {
  position: relative;
  min-height: 900px;
  height: calc(100svh - 18px);
  max-height: 1040px;
  overflow: hidden;
  background: #080a0c;
  color: var(--lux-white);
}

.lux-hero-film,
.lux-hero-filter,
.lux-hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lux-hero-film {
  object-fit: cover;
  transform: scale(var(--lux-hero-scale, 1.045)) translate3d(var(--lux-hero-x, 0), var(--lux-hero-y, 0), 0);
  filter: saturate(1.08) contrast(1.07);
  will-change: transform;
}

.lux-hero-filter {
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.9) 0%, rgba(5, 7, 9, 0.6) 42%, rgba(5, 7, 9, 0.15) 72%, rgba(5, 7, 9, 0.38) 100%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.78) 0%, rgba(5, 7, 9, 0.03) 60%);
}

.lux-hero-grid {
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.lux-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 50px;
}

.lux-hero-copy {
  position: absolute;
  top: 48%;
  left: 0;
  width: min(780px, 68%);
  transform: translateY(-50%);
}

.lux-hero-copy h1 {
  max-width: 760px;
  margin: 26px 0 26px;
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 8.1rem;
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
}

.lux-hero-copy h1 em,
.lux-section-head h2 em,
.lux-capabilities h2 em,
.lux-method-copy h2 em,
.lux-cta h2 em {
  color: var(--lux-red);
  font-style: normal;
}

.lux-hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
}

.lux-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.lux-reel-control {
  position: absolute;
  right: 0;
  bottom: 168px;
  display: grid;
  width: 298px;
  min-height: 76px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 16px 11px 11px;
  border-radius: 8px;
  color: var(--lux-white);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.lux-reel-control:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.55);
}

.lux-reel-play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lux-red);
  font-size: 0.7rem;
}

.lux-reel-control small,
.lux-reel-control strong {
  display: block;
}

.lux-reel-control small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.lux-reel-control strong {
  font-size: 0.78rem;
}

.lux-proof {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: grid;
  width: 520px;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
}

.lux-proof div {
  min-width: 0;
  padding: 17px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.lux-proof strong {
  margin-bottom: 4px;
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.lux-proof span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.63rem;
  line-height: 1.35;
}

.lux-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.lux-scroll-cue span {
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.lux-scroll-cue span::after {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--lux-red);
  content: "";
  animation: lux-scroll-line 1.8s ease-in-out infinite;
}

@keyframes lux-scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(180%); }
}

.lux-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--lux-lime);
  color: var(--lux-ink);
}

.lux-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 17px 0;
  animation: lux-ticker 34s linear infinite;
}

.lux-ticker span {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lux-ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lux-red);
}

@keyframes lux-ticker {
  to { transform: translateX(-50%); }
}

.lux-work,
.lux-prototypes,
.lux-method,
.lux-cta {
  position: relative;
  background: var(--lux-ink);
  color: var(--lux-white);
}

.lux-work {
  padding: 132px 0 150px;
}

.lux-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.lux-section-head h2 {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 4.6rem;
  font-weight: 580;
  line-height: 0.98;
  letter-spacing: 0;
}

.lux-section-head > div:last-child > p,
.lux-section-head > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.65;
}

.lux-work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.lux-work-card {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  transform: translate3d(var(--lux-tilt-x, 0), var(--lux-tilt-y, 0), 0);
  transition: transform 180ms ease;
}

.lux-work-card:nth-child(3),
.lux-work-card:nth-child(6) {
  grid-column: span 7;
}

.lux-work-card.lux-work-lead,
.lux-work-card.lux-work-wide {
  grid-column: span 7;
}

.lux-work-card.lux-work-wide {
  grid-column: span 5;
}

.lux-work-card,
.lux-work-card:nth-child(3),
.lux-work-card:nth-child(6),
.lux-work-card.lux-work-lead,
.lux-work-card.lux-work-wide {
  grid-column: span 6;
}

.lux-work-card > a {
  position: relative;
  display: block;
  height: 100%;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: var(--lux-ink-soft);
  color: var(--lux-white);
  text-decoration: none;
  isolation: isolate;
}

.lux-work-card:nth-child(n + 5) > a {
  min-height: 500px;
}

.lux-work-card > a,
.lux-work-card:nth-child(n + 5) > a {
  min-height: 0;
  aspect-ratio: 8 / 5;
}

.lux-work-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lux-work-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 6, 7, 0.75) 0%, transparent 48%);
  content: "";
  pointer-events: none;
}

.lux-work-backdrop,
.lux-work-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02) translate3d(var(--lux-media-x, 0), var(--lux-media-y, 0), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 350ms ease;
}

.lux-work-preview-media .lux-work-preview {
  object-fit: cover;
  object-position: center;
}

.lux-work-card:hover .lux-work-backdrop,
.lux-work-card:hover .lux-work-media > video {
  transform: scale(1.08) translate3d(var(--lux-media-x, 0), var(--lux-media-y, 0), 0);
  filter: saturate(1.12);
}

.lux-device {
  position: absolute;
  z-index: 2;
  right: 9%;
  top: 9%;
  width: min(250px, 34%);
  height: 74%;
  overflow: hidden;
  border: 8px solid #111418;
  border-radius: 28px;
  background: #111418;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  transform: rotate(3deg) translate3d(calc(var(--lux-media-x, 0) * -0.8), calc(var(--lux-media-y, 0) * -0.8), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lux-work-lead .lux-device {
  right: 11%;
  width: min(270px, 31%);
  transform: rotate(-3deg) translate3d(calc(var(--lux-media-x, 0) * -0.8), calc(var(--lux-media-y, 0) * -0.8), 0);
}

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

.lux-work-card:hover .lux-device {
  transform: rotate(0deg) translateY(-8px);
}

.lux-project-index {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(8, 10, 12, 0.44);
  color: var(--lux-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.lux-work-meta {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  min-height: 92px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  transition: background 180ms ease, transform 180ms ease;
}

.lux-work-card:hover .lux-work-meta {
  background: rgba(15, 18, 21, 0.76);
  transform: translateY(-3px);
}

.lux-work-meta small,
.lux-work-meta h3 {
  display: block;
  margin: 0;
}

.lux-work-meta small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.lux-work-meta h3 {
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1;
}

.lux-work-meta > span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 650;
}

.lux-work-performance .lux-work-backdrop {
  filter: saturate(0.62) contrast(1.08) brightness(0.72);
}

.lux-performance-readout {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 250px;
  padding: 24px;
  border-radius: 8px;
  transform: translate(-50%, -54%);
}

.lux-performance-readout span,
.lux-performance-readout strong,
.lux-performance-readout small {
  display: block;
}

.lux-performance-readout span,
.lux-performance-readout small {
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.lux-performance-readout strong {
  margin: 12px 0;
  color: var(--lux-lime);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 4rem;
  line-height: 0.8;
}

.lux-prototypes {
  padding: 132px 0 150px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-prototypes::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 28%;
  height: 9px;
  background: var(--lux-blue);
  content: "";
}

.lux-prototype-rail {
  display: grid;
  grid-auto-columns: minmax(500px, 620px);
  grid-auto-flow: column;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 max(56px, calc((100vw - 1280px) / 2)) 36px;
  scroll-padding-inline: max(56px, calc((100vw - 1280px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  scrollbar-width: thin;
}

.lux-prototype-card {
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #15191e;
  scroll-snap-align: start;
  text-decoration: none;
  transform: translateY(var(--lux-rail-y, 0));
  transition: transform 260ms ease, border-color 220ms ease;
}

.lux-prototype-card:nth-child(2n) {
  --lux-rail-y: 28px;
}

.lux-prototype-card:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(calc(var(--lux-rail-y, 0) - 9px));
}

.lux-prototype-card > img,
.lux-prototype-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.lux-prototype-card:hover > img,
.lux-prototype-card:hover > video {
  transform: scale(1.07);
  filter: saturate(1.16);
}

.lux-prototype-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 9, 0.75), transparent 55%);
  content: "";
}

.lux-prototype-card > .glass {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
}

.lux-prototype-card small,
.lux-prototype-card h3 {
  display: block;
  margin: 0;
}

.lux-prototype-card small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.lux-prototype-card h3 {
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.lux-prototype-card b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.lux-live {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 8, 10, 0.52);
  color: var(--lux-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.59rem;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.lux-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-lime);
  box-shadow: 0 0 14px rgba(217, 255, 91, 0.75);
  animation: lux-live 1.5s ease-in-out infinite;
}

@keyframes lux-live {
  50% { opacity: 0.45; }
}

.lux-capabilities,
.lux-insights {
  background: var(--lux-paper);
  color: var(--lux-ink);
}

.lux-capabilities {
  padding: 140px 0 150px;
}

.lux-section-head-dark h2,
.lux-section-head-dark h2 em {
  color: var(--lux-ink);
}

.lux-section-head-dark h2 em {
  color: var(--lux-red);
}

.lux-section-head-dark > div:last-child > p,
.lux-section-head-dark > p {
  color: rgba(9, 11, 13, 0.58);
}

.lux-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lux-capability-card {
  position: relative;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 11, 13, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--lux-ink);
  text-decoration: none;
  transform: translate3d(var(--lux-tilt-x, 0), var(--lux-tilt-y, 0), 0);
  transition: background 220ms ease, color 220ms ease, transform 180ms ease;
}

.lux-capability-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--card-accent, var(--lux-red));
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 300ms ease;
}

.lux-capability-card:nth-child(2) { --card-accent: var(--lux-blue); }
.lux-capability-card:nth-child(3) { --card-accent: var(--lux-lime); }
.lux-capability-card:nth-child(4) { --card-accent: var(--lux-yellow); }
.lux-capability-card:nth-child(5) { --card-accent: var(--lux-red); }

.lux-capability-card:hover {
  background: var(--lux-ink);
  color: var(--lux-white);
}

.lux-capability-card:hover::before {
  transform: scaleX(1);
}

.lux-capability-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 562px;
  padding: 32px;
  background: var(--lux-red);
  color: var(--lux-white);
}

.lux-capability-feature::after {
  position: absolute;
  right: -35px;
  bottom: -75px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.05), 0 0 0 92px rgba(255, 255, 255, 0.03);
}

.lux-capability-card > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.lux-capability-card small {
  display: block;
  margin-bottom: 10px;
  opacity: 0.62;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  text-transform: uppercase;
}

.lux-capability-card h3 {
  max-width: 420px;
  margin: 0;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 620;
  line-height: 1.02;
}

.lux-capability-feature h3 {
  font-size: 4.3rem;
  line-height: 0.9;
}

.lux-capability-card p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.65;
}

.lux-capability-card:not(.lux-capability-feature) p {
  color: rgba(9, 11, 13, 0.64);
}

.lux-capability-card:not(.lux-capability-feature):hover p {
  color: rgba(255, 255, 255, 0.74);
}

.lux-capability-card > b {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.1rem;
}

.lux-method {
  min-height: 870px;
  padding: 150px 0;
  overflow: hidden;
}

.lux-method-film,
.lux-method-film::after {
  position: absolute;
  inset: 0;
}

.lux-method-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58) brightness(0.36) contrast(1.16);
}

.lux-method-film::after {
  background: rgba(5, 7, 9, 0.28);
  content: "";
}

.lux-method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 100px;
  align-items: center;
}

.lux-rune {
  position: relative;
  display: grid;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  perspective: 900px;
}

.lux-rune .alchemy-rune-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: rotateX(var(--lux-rune-y, 0deg)) rotateY(var(--lux-rune-x, 0deg));
  transition: transform 120ms ease-out;
}

.lux-rune .rune-fallback-mark {
  z-index: 2;
  inset: 20% 22%;
  width: auto;
  height: auto;
  color: var(--lux-white);
}

.lux-rune > span {
  position: absolute;
  z-index: 1;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: lux-orbit 10s linear infinite;
}

.lux-rune > span:nth-of-type(2) {
  width: 90%;
  border-color: rgba(217, 255, 91, 0.22);
  animation-direction: reverse;
  animation-duration: 15s;
}

.lux-rune > span:nth-of-type(3) {
  width: 52%;
  border-color: rgba(121, 169, 255, 0.28);
  animation-duration: 7s;
}

@keyframes lux-orbit {
  to { transform: rotate(360deg); }
}

.lux-method-copy h2 {
  margin: 24px 0 26px;
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 580;
  line-height: 0.95;
  letter-spacing: 0;
}

.lux-method-copy > p:not(.lux-eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.72;
}

.lux-method-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.lux-insights {
  padding: 140px 0 150px;
}

.lux-blog-grid.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lux-blog-grid .blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 11, 13, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.lux-blog-grid .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 18, 22, 0.12);
}

.lux-blog-grid .blog-card-media,
.lux-blog-grid .blog-card-art {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
}

.lux-blog-grid .blog-card-media::after,
.lux-blog-grid .blog-card-art::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.lux-blog-grid .blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lux-blog-grid .blog-card:hover .blog-card-image {
  transform: scale(1.07);
}

.lux-blog-grid .blog-card-copy {
  min-height: 290px;
  padding: 24px;
}

.lux-blog-grid .blog-card h2,
.lux-blog-grid .blog-card h3 {
  color: var(--lux-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.lux-blog-grid .blog-card p,
.lux-blog-grid .blog-meta {
  color: rgba(9, 11, 13, 0.56);
}

.lux-cta {
  padding: 160px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-cta::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--lux-red);
  content: "";
}

.lux-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 90px;
  align-items: end;
}

.lux-cta h2 {
  margin: 20px 0 0;
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: 0;
}

.lux-cta-grid > div:last-child {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.lux-cta-grid > div:last-child p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.92rem;
  line-height: 1.65;
}

body.lux-site .site-footer {
  padding: 90px max(56px, calc((100vw - 1280px) / 2)) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050607;
  color: var(--lux-white);
}

body.lux-site .footer-brand {
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 2.2rem;
}

body.lux-site .footer-main p,
body.lux-site .site-footer nav a,
body.lux-site .footer-legal,
body.lux-site .footer-legal a {
  color: rgba(255, 255, 255, 0.55);
}

/* Inner pages inherit the same visual world without changing their working content. */
body.lux-site:not(.lux-home) main {
  background: var(--lux-ink);
}

body.lux-site:not(.lux-home) .studio-inner-hero,
body.lux-site:not(.lux-home) .studio-prototype-hero,
body.lux-site:not(.lux-home) .studio-journal-hero,
body.lux-site:not(.lux-home) .studio-brief-hero,
body.lux-site:not(.lux-home) .studio-approach-hero,
body.lux-site:not(.lux-home) .studio-alchemy-hero {
  position: relative;
  min-height: 730px;
  padding-top: 170px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--lux-ink);
  color: var(--lux-white);
}

body.lux-site:not(.lux-home) .studio-inner-hero::before,
body.lux-site:not(.lux-home) .studio-prototype-hero::before,
body.lux-site:not(.lux-home) .studio-journal-hero::before,
body.lux-site:not(.lux-home) .studio-brief-hero::before,
body.lux-site:not(.lux-home) .studio-approach-hero::before,
body.lux-site:not(.lux-home) .studio-alchemy-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 78%);
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

body.lux-site:not(.lux-home) .studio-inner-hero h1,
body.lux-site:not(.lux-home) .studio-prototype-hero h1,
body.lux-site:not(.lux-home) .studio-journal-hero h1,
body.lux-site:not(.lux-home) .studio-brief-hero h1,
body.lux-site:not(.lux-home) .studio-approach-hero h1,
body.lux-site:not(.lux-home) .studio-alchemy-hero h1 {
  color: var(--lux-white);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

body.lux-site:not(.lux-home) .studio-inner-hero h1 em,
body.lux-site:not(.lux-home) .studio-prototype-hero h1 em,
body.lux-site:not(.lux-home) .studio-journal-hero h1 em,
body.lux-site:not(.lux-home) .studio-brief-hero h1 em,
body.lux-site:not(.lux-home) .studio-approach-hero h1 em,
body.lux-site:not(.lux-home) .studio-alchemy-hero h1 em {
  color: var(--lux-red);
  font-style: normal;
}

body.lux-site:not(.lux-home) .studio-inner-aside,
body.lux-site:not(.lux-home) .studio-prototype-hero-copy > p,
body.lux-site:not(.lux-home) .studio-journal-hero p,
body.lux-site:not(.lux-home) .studio-brief-hero-copy > p,
body.lux-site:not(.lux-home) .studio-approach-hero p,
body.lux-site:not(.lux-home) .studio-alchemy-hero p {
  color: rgba(255, 255, 255, 0.62);
}

body.lux-site:not(.lux-home) .studio-section,
body.lux-site:not(.lux-home) .studio-belief,
body.lux-site:not(.lux-home) .studio-prototype-band,
body.lux-site:not(.lux-home) .studio-journal-index,
body.lux-site:not(.lux-home) .studio-contact-section {
  background: var(--lux-paper);
  color: var(--lux-ink);
}

body.lux-site:not(.lux-home) .studio-section-heading h2,
body.lux-site:not(.lux-home) .studio-title,
body.lux-site:not(.lux-home) .studio-belief blockquote,
body.lux-site:not(.lux-home) .studio-journal-heading h2 {
  color: var(--lux-ink);
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: 0;
}

body.lux-site:not(.lux-home) .studio-project-card > a,
body.lux-site:not(.lux-home) .studio-prototype-object > a,
body.lux-site:not(.lux-home) .blog-card,
body.lux-site:not(.lux-home) .studio-approach-card,
body.lux-site:not(.lux-home) .studio-brief-panel {
  overflow: hidden;
  border: 1px solid rgba(9, 11, 13, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(14, 18, 22, 0.08);
}

body.lux-site:not(.lux-home) .studio-filter-bar {
  position: sticky;
  z-index: 20;
  top: 104px;
  padding: 10px;
  border: 1px solid rgba(9, 11, 13, 0.12);
  border-radius: 999px;
  background: rgba(241, 242, 239, 0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

body.lux-site:not(.lux-home) .studio-filters button {
  border-radius: 999px;
}

body.lux-site:not(.lux-home) .studio-filters button.is-active,
body.lux-site:not(.lux-home) .studio-filters button[aria-pressed="true"] {
  background: var(--lux-ink);
  color: var(--lux-white);
}

body.lux-site.studio-work-page .studio-project-media,
body.lux-site.studio-work-page .studio-site-object {
  min-height: 0;
}

body.lux-site.studio-work-page .studio-project-card,
body.lux-site.studio-work-page .studio-project-card.is-wide,
body.lux-site.studio-work-page .studio-project-card.is-narrow {
  grid-column: span 6;
}

body.lux-site.studio-work-page .studio-project-media,
body.lux-site.studio-work-page .studio-project-card.is-narrow .studio-project-media {
  aspect-ratio: 8 / 5;
}

body.lux-site.studio-work-page .studio-project-preview img {
  object-fit: cover;
  object-position: center;
}

body.lux-site.studio-work-page .studio-project-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 20px 22px;
  background: #fff;
}

body.lux-site.studio-work-page .studio-project-copy p {
  margin-bottom: 6px;
}

body.lux-site.studio-work-page .studio-project-copy h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.15rem);
}

body.lux-site.studio-work-page .studio-project-copy small {
  max-width: 560px;
  text-align: left;
}

body.lux-site.studio-prototypes-page .studio-prototype-object,
body.lux-site.studio-prototypes-page .studio-prototype-object.is-wide {
  grid-column: span 6;
}

body.lux-site.studio-prototypes-page .studio-prototype-object.is-full {
  grid-column: 1 / -1;
}

body.lux-site.studio-prototypes-page .studio-prototype-object-media,
body.lux-site.studio-prototypes-page .studio-prototype-object.is-wide .studio-prototype-object-media {
  aspect-ratio: 8 / 5;
}

body.lux-site.studio-prototypes-page .studio-prototype-object.is-full .studio-prototype-object-media {
  aspect-ratio: 16 / 7;
}

body.lux-site.studio-prototypes-page .studio-prototype-object-media img,
body.lux-site.studio-prototypes-page .studio-stage-screen img {
  object-fit: cover;
  object-position: center;
}

body.lux-site.studio-prototypes-page .studio-prototype-object.is-full > a > div {
  grid-template-columns: 1fr;
}

body.lux-site.studio-prototypes-page .studio-prototype-object > a > div {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 20px 22px;
  background: #fff;
}

body.lux-site.studio-prototypes-page .studio-prototype-object > a > div p {
  margin: 0;
}

body.lux-site.studio-prototypes-page .studio-prototype-object h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.15rem);
}

body.lux-site.studio-prototypes-page .studio-prototype-object small {
  max-width: 560px;
  text-align: left;
}

body.lux-site.studio-prototypes-page .studio-prototype-stage,
body.lux-site.studio-alchemy-page .studio-alchemy-hero-visual,
body.lux-site.studio-brief-page .studio-brief-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--lux-shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.lux-site.studio-prototypes-page .studio-prototype-principle,
body.lux-site.studio-alchemy-page .studio-alchemy-output,
body.lux-site.studio-approach-page .studio-approach-speed,
body.lux-site.studio-blog-page .studio-journal-feature {
  background: var(--lux-ink);
  color: var(--lux-white);
}

body.lux-site.studio-blog-page .blog-card h2,
body.lux-site.studio-blog-page .blog-card h3 {
  color: var(--lux-ink);
}

body.lux-site.studio-blog-page .blog-card-copy > p:not(.blog-meta) {
  color: rgba(9, 11, 13, 0.66);
}

body.lux-site.studio-brief-page .studio-brief-form,
body.lux-site.studio-brief-page .studio-contact-form {
  border-radius: 8px;
}

body.lux-site.studio-brief-page input,
body.lux-site.studio-brief-page textarea,
body.lux-site.studio-brief-page select {
  border-radius: 6px;
}

body.lux-site .mobile-bottom-nav {
  z-index: 180;
}

@media (max-width: 1180px) {
  .lux-container,
  body.lux-site .studio-container {
    width: min(100% - 64px, 1100px);
  }

  body.lux-site .site-header {
    width: calc(100% - 34px);
  }

  body.lux-site .main-nav a {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .lux-hero-copy h1 {
    font-size: 6.3rem;
  }

  .lux-section-head h2,
  .lux-method-copy h2 {
    font-size: 4rem;
  }

  .lux-work-card > a {
    min-height: 0;
    aspect-ratio: 8 / 5;
  }

  .lux-capability-feature h3 {
    font-size: 3.5rem;
  }

  .lux-cta h2 {
    font-size: 5.2rem;
  }
}

@media (max-width: 900px) {
  .lux-container,
  body.lux-site .studio-container {
    width: calc(100% - 40px);
  }

  body.lux-site .site-header {
    top: 12px;
    min-height: 58px;
    padding: 7px 8px 7px 12px;
  }

  body.lux-site .main-nav,
  body.lux-site .brand-lockup > span:last-child {
    display: none;
  }

  body.lux-site .nav-action {
    min-height: 42px;
    padding-inline: 16px;
  }

  .lux-hero {
    min-height: 780px;
    height: 92svh;
  }

  .lux-hero-copy {
    top: 46%;
    width: 86%;
  }

  .lux-hero-copy h1 {
    font-size: 5.4rem;
  }

  .lux-hero-lede {
    max-width: 520px;
    font-size: 0.96rem;
  }

  .lux-reel-control {
    display: none;
  }

  .lux-proof {
    right: auto;
    bottom: 32px;
    left: 0;
    width: 100%;
  }

  .lux-scroll-cue {
    display: none;
  }

  .lux-section-head,
  .lux-method-grid,
  .lux-cta-grid {
    grid-template-columns: 1fr;
  }

  .lux-section-head {
    gap: 28px;
  }

  .lux-section-head h2,
  .lux-method-copy h2 {
    font-size: 3.6rem;
  }

  .lux-section-head > div:last-child,
  .lux-section-head > p {
    max-width: 560px;
  }

  .lux-work-card,
  .lux-work-card:nth-child(3),
  .lux-work-card:nth-child(6),
  .lux-work-card.lux-work-lead,
  .lux-work-card.lux-work-wide {
    grid-column: span 6;
  }

  .lux-work-card > a {
    min-height: 0;
    aspect-ratio: 8 / 5;
  }

  .lux-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-capability-feature {
    min-height: 500px;
  }

  .lux-method-grid {
    gap: 50px;
  }

  .lux-rune {
    width: min(100%, 430px);
  }

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

  .lux-blog-grid .blog-card:last-child {
    display: none;
  }

  .lux-cta::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 42%;
  }

  .lux-cta-grid {
    gap: 100px;
  }

  body.lux-site:not(.lux-home) .studio-inner-hero h1,
  body.lux-site:not(.lux-home) .studio-prototype-hero h1,
  body.lux-site:not(.lux-home) .studio-journal-hero h1,
  body.lux-site:not(.lux-home) .studio-brief-hero h1,
  body.lux-site:not(.lux-home) .studio-approach-hero h1,
  body.lux-site:not(.lux-home) .studio-alchemy-hero h1 {
    font-size: 4.6rem;
  }
}

@media (max-width: 640px) {
  .lux-container,
  body.lux-site .studio-container {
    width: calc(100% - 32px);
  }

  body.lux-site .site-header {
    width: calc(100% - 24px);
  }

  body.lux-site .brand-mark {
    width: 32px;
    height: 32px;
  }

  body.lux-site .nav-action {
    font-size: 0.72rem;
  }

  .lux-hero {
    min-height: 740px;
    height: 91svh;
  }

  .lux-hero-filter {
    background: linear-gradient(0deg, rgba(5, 7, 9, 0.92) 0%, rgba(5, 7, 9, 0.44) 62%, rgba(5, 7, 9, 0.3) 100%);
  }

  .lux-hero-content {
    padding-top: 116px;
  }

  .lux-hero-copy {
    top: 43%;
    width: 100%;
  }

  .lux-hero-copy h1 {
    margin: 19px 0 21px;
    font-size: 4rem;
    line-height: 0.84;
  }

  .lux-hero-lede {
    max-width: 350px;
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .lux-actions {
    gap: 14px;
    margin-top: 25px;
  }

  .lux-button,
  body.lux-site .studio-button {
    min-height: 46px;
    gap: 14px;
    padding-inline: 17px;
    font-size: 0.73rem;
  }

  .lux-link,
  body.lux-site .studio-text-link {
    font-size: 0.72rem;
  }

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

  .lux-proof div {
    padding: 13px 10px;
  }

  .lux-proof strong {
    font-size: 1.16rem;
  }

  .lux-proof span {
    font-size: 0.52rem;
  }

  .lux-ticker > div {
    padding-block: 13px;
  }

  .lux-work,
  .lux-prototypes,
  .lux-capabilities,
  .lux-insights {
    padding-block: 88px;
  }

  .lux-section-head {
    margin-bottom: 36px;
  }

  .lux-section-head h2,
  .lux-method-copy h2 {
    font-size: 2.9rem;
    line-height: 0.98;
  }

  .lux-section-head > div:last-child > p,
  .lux-section-head > p {
    font-size: 0.82rem;
  }

  .lux-work-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lux-work-card,
  .lux-work-card:nth-child(3),
  .lux-work-card:nth-child(6),
  .lux-work-card.lux-work-lead,
  .lux-work-card.lux-work-wide {
    grid-column: 1;
  }

  .lux-work-card > a,
  .lux-work-card:nth-child(n + 5) > a {
    min-height: 0;
    aspect-ratio: 8 / 5;
  }

  .lux-device,
  .lux-work-lead .lux-device {
    right: 8%;
    width: 39%;
    height: 66%;
  }

  .lux-work-meta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 80px;
    padding: 14px;
  }

  .lux-work-meta h3 {
    font-size: 1.25rem;
  }

  .lux-work-meta > span {
    display: none;
  }

  .lux-prototype-rail {
    grid-auto-columns: 86vw;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .lux-prototype-card {
    height: auto;
    aspect-ratio: 8 / 5;
  }

  body.lux-site.studio-work-page .studio-project-card,
  body.lux-site.studio-work-page .studio-project-card.is-wide,
  body.lux-site.studio-work-page .studio-project-card.is-narrow,
  body.lux-site.studio-prototypes-page .studio-prototype-object,
  body.lux-site.studio-prototypes-page .studio-prototype-object.is-wide,
  body.lux-site.studio-prototypes-page .studio-prototype-object.is-full {
    grid-column: 1 / -1;
  }

  body.lux-site.studio-prototypes-page .studio-prototype-object.is-full .studio-prototype-object-media {
    aspect-ratio: 8 / 5;
  }

  .lux-capability-grid {
    grid-template-columns: 1fr;
  }

  .lux-capability-feature {
    grid-column: 1;
    grid-row: auto;
    min-height: 430px;
    padding: 24px;
  }

  .lux-capability-card {
    min-height: 210px;
  }

  .lux-capability-feature h3 {
    font-size: 3.2rem;
  }

  .lux-method {
    min-height: auto;
    padding-block: 92px;
  }

  .lux-rune {
    width: 100%;
  }

  .lux-method-links {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .lux-blog-grid .blog-card:last-child {
    display: block;
  }

  .lux-blog-grid .blog-card-media,
  .lux-blog-grid .blog-card-art {
    height: 230px;
  }

  .lux-cta {
    padding: 100px 0 130px;
  }

  .lux-cta h2 {
    font-size: 4rem;
  }

  body.lux-site .site-footer {
    padding: 72px 20px 118px;
  }

  body.lux-site:not(.lux-home) .studio-inner-hero,
  body.lux-site:not(.lux-home) .studio-prototype-hero,
  body.lux-site:not(.lux-home) .studio-journal-hero,
  body.lux-site:not(.lux-home) .studio-brief-hero,
  body.lux-site:not(.lux-home) .studio-approach-hero,
  body.lux-site:not(.lux-home) .studio-alchemy-hero {
    min-height: 640px;
    padding-top: 125px;
  }

  body.lux-site:not(.lux-home) .studio-inner-hero h1,
  body.lux-site:not(.lux-home) .studio-prototype-hero h1,
  body.lux-site:not(.lux-home) .studio-journal-hero h1,
  body.lux-site:not(.lux-home) .studio-brief-hero h1,
  body.lux-site:not(.lux-home) .studio-approach-hero h1,
  body.lux-site:not(.lux-home) .studio-alchemy-hero h1 {
    font-size: 3.45rem;
  }

  body.lux-site:not(.lux-home) .studio-filter-bar {
    top: 78px;
    border-radius: 8px;
  }

  body.lux-site .mobile-bottom-nav {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(10, 13, 16, 0.7);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    backdrop-filter: blur(24px) saturate(150%);
  }

  body.lux-site .mobile-bottom-nav__scroller {
    gap: 2px;
  }

  body.lux-site .mobile-bottom-nav__scroller > a,
  body.lux-site .mobile-more-trigger {
    min-height: 52px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
  }

  body.lux-site .mobile-bottom-nav__scroller > a.active,
  body.lux-site .mobile-more-trigger.active,
  body.lux-site .mobile-more-trigger[aria-expanded="true"] {
    background: var(--lux-white);
    color: var(--lux-ink);
  }

  body.lux-site .mobile-more-menu {
    right: 0;
    bottom: 68px;
    left: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(10, 13, 16, 0.9);
    color: var(--lux-white);
    box-shadow: var(--lux-shadow);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  body.lux-site .mobile-more-menu a,
  body.lux-site .mobile-more-menu__label {
    color: var(--lux-white);
  }
}

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