:root {
  color-scheme: dark;
  --bg: #030406;
  --bg-2: #07080c;
  --text: #f5f5f2;
  --muted: #a7a8ad;
  --dim: #62646b;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.07);
  --max: 1180px;
  --screen-x-inset: clamp(22px, 3vw, 42px);
  --screen-top-inset: clamp(86px, 9vh, 112px);
  --screen-bottom-inset: clamp(18px, 3vh, 34px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 360px),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.scroll-light {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(920px, 92vw);
  height: 60vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12), transparent 68%);
  filter: blur(38px);
  opacity: 0.45;
  transform: translate3d(-50%, calc(var(--scroll-y, 0) * 0.03px), 0);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand,
.nav-links {
  border: 1px solid var(--line-soft);
  background: rgba(6, 7, 10, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
}

.nav-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center start;
  overflow: hidden;
  padding: 132px 0 96px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 980px;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-cue i {
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  animation: cueLine 1.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(3.65rem, 9.4vw, 9.1rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #f6f5ee;
  color: #06070a;
  font-size: 0.96rem;
  font-weight: 850;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
}

.light-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
}

.beam {
  position: absolute;
  left: -18vw;
  width: 136vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04), transparent);
  filter: blur(0.4px);
  transform: rotate(-16deg);
  transform-origin: center;
  animation: beamDrift 9s linear infinite;
}

.beam-1 {
  top: 27%;
}

.beam-2 {
  top: 43%;
  animation-duration: 12s;
  animation-delay: -5s;
  opacity: 0.46;
}

.beam-3 {
  top: 64%;
  animation-duration: 15s;
  animation-delay: -9s;
  opacity: 0.32;
}

.beam-4 {
  top: 78%;
  animation-duration: 18s;
  animation-delay: -3s;
  opacity: 0.24;
}

.projects {
  position: relative;
}

.industry {
  position: relative;
  padding: clamp(78px, 12vw, 140px) 0;
  border-top: 1px solid var(--line-soft);
}

.industry::before {
  content: "";
  position: absolute;
  inset: 12% 18% 16%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 68%);
  filter: blur(36px);
  opacity: 0.72;
}

.industry-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1px;
  min-height: clamp(460px, 48vw, 590px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.industry-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: #050609;
  transition: flex 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.industry-card:hover,
.industry-card:focus-within {
  flex: 2.05 1 0;
  filter: drop-shadow(0 0 46px rgba(255, 255, 255, 0.08));
}

.industry-card-panel {
  position: relative;
  display: grid;
  height: 100%;
  min-height: inherit;
  align-content: end;
  overflow: hidden;
  padding: clamp(22px, 3.3vw, 40px);
  color: inherit;
  isolation: isolate;
}

.industry-card-panel::before,
.industry-card-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.industry-card-panel::before {
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.72) 62%, rgba(3, 4, 6, 0.92)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.56), transparent 58%);
}

.industry-card-panel::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.industry-thumb {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #101116;
}

.industry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.62;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 620ms ease;
}

.industry-card:hover .industry-thumb img,
.industry-card:focus-within .industry-thumb img {
  opacity: 0.86;
  transform: scale(1.06) translateY(-1.5%);
}

.industry-number {
  position: absolute;
  top: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 34px);
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.industry-copy {
  display: grid;
  gap: 16px;
  max-width: 430px;
}

.industry-card h3 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  transition: max-width 320ms ease;
}

.industry-card:hover h3,
.industry-card:focus-within h3 {
  max-width: 15ch;
}

.industry-card p {
  max-width: 31ch;
  color: var(--muted);
  line-height: 1.66;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 320ms ease, opacity 240ms ease, transform 240ms ease;
}

.industry-card:hover p,
.industry-card:focus-within p {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.industry-card:hover .card-link,
.industry-card:focus-within .card-link {
  opacity: 1;
  transform: translateY(0);
}

.industry-card-panel:hover .card-link,
.industry-card-panel:focus-visible .card-link {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.095);
}

.work {
  padding: clamp(78px, 12vw, 140px) 0;
  border-top: 1px solid var(--line-soft);
}

.work-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.work-heading h2 {
  max-width: 650px;
  font-size: clamp(2.6rem, 6.8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.work-heading p {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.65;
}

.work-shell {
  position: relative;
}

.work-shell::before {
  content: "";
  position: absolute;
  inset: 16% 18% 10%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
  filter: blur(34px);
  opacity: 0.7;
}

.work-controls {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.work-arrow {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.work-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.work-arrow:hover,
.work-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.work-arrow span {
  font-size: 1.5rem;
  line-height: 1;
}

.work-count {
  min-width: 66px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.work-slider {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2)) 34px;
  margin-inline: calc((100vw - 100%) / -2);
  scroll-behavior: smooth;
  scroll-padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-slider::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 clamp(260px, 36vw, 470px);
  min-width: 0;
  opacity: 0.42;
  scroll-snap-align: center;
  transform: scale(0.92);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.work-card.is-active {
  opacity: 1;
  filter: drop-shadow(0 0 44px rgba(255, 255, 255, 0.12));
  transform: scale(1);
}

.work-card-button {
  display: grid;
  width: 100%;
  gap: 16px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.work-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.05;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(16px, 2vw, 24px);
  background: #111217;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 66%, rgba(3, 4, 6, 0.26));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 520ms ease;
}

.work-card.is-active .work-card-media img,
.work-card-button:hover .work-card-media img,
.work-card-button:focus-visible .work-card-media img {
  transform: scale(1.045) translateY(-1.5%);
}

.work-card-copy {
  display: grid;
  gap: 9px;
  min-height: 126px;
  padding-inline: 4px;
}

.work-card-copy span {
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.work-card-copy strong {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.work-card-copy small {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.project-scene {
  --progress: 0;
  --enter: 0;
  --full: 0;
  --copy: 1;
  --exit: 0;
  --media-shift: 0px;
  --scene-light: 0;
  --side: 1;
  position: relative;
  min-height: 320svh;
  border-top: 1px solid var(--line-soft);
}

.project-scene:nth-child(even) {
  --side: -1;
}

.project-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% calc(20% + var(--progress) * 38%), rgb(var(--accent) / 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
  opacity: calc(0.4 + var(--scene-light) * 0.58);
}

.project-sticky {
  position: sticky;
  top: 0;
  display: block;
  width: min(calc(100% - 40px), var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 0;
}

.project-copy {
  position: absolute;
  top: 43%;
  left: 0;
  z-index: 4;
  max-width: 430px;
  opacity: var(--copy);
  pointer-events: none;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.7);
  will-change: opacity, transform;
  transform:
    translate3d(calc((1 - var(--enter)) * -24px + var(--exit) * var(--side) * -70px), calc(-50% + (1 - var(--enter)) * 30px), 0)
    scale(calc(1 - var(--enter) * 0.03));
}

.js .project-copy.reveal.is-visible {
  opacity: var(--copy);
}

.project-number {
  display: block;
  margin-bottom: 24px;
  color: rgb(var(--accent));
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: 0.74;
  opacity: 0.92;
}

.project-copy h2 {
  font-size: clamp(2.25rem, 5.3vw, 5.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.project-copy p {
  max-width: 380px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.68;
}

.screen-viewport {
  position: absolute;
  top: calc(var(--screen-top-inset) + (100svh - var(--screen-top-inset) - var(--screen-bottom-inset)) / 2);
  left: 50%;
  z-index: 1;
  width: calc(100vw - var(--screen-x-inset) * 2);
  height: calc(100svh - var(--screen-top-inset) - var(--screen-bottom-inset));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(8px + (1 - var(--full)) * 18px + var(--exit) * 14px);
  background: #111217;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    0 0 calc(36px + var(--full) * 120px) rgb(var(--accent) / calc(0.05 + var(--full) * 0.17));
  opacity: calc(0.44 + var(--enter) * 0.56 - var(--exit) * 0.26);
  transform:
    translate3d(
      calc(-50% + (1 - var(--enter)) * var(--side) * 30vw + var(--exit) * var(--side) * -38vw),
      calc(-50% + (1 - var(--enter)) * 8vh + var(--exit) * 5vh),
      0
    )
    scale(calc(0.54 + var(--enter) * 0.46 - var(--exit) * 0.26));
  transition: box-shadow 220ms ease;
  backface-visibility: hidden;
  contain: paint;
  will-change: opacity, transform;
}

.screen-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.22), transparent 18%, transparent 74%, rgba(3, 4, 6, 0.42)),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.18), transparent 32%);
  opacity: calc(0.5 - var(--full) * 0.32 + var(--exit) * 0.2);
}

.screen-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.screen-viewport img {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  transform: translate3d(0, calc(var(--media-shift) * -1), 0);
  transform-origin: top center;
  backface-visibility: hidden;
  will-change: transform;
}

.screen-viewport.portrait {
  aspect-ratio: auto;
  max-height: none;
}

.screen-viewport.wide {
  aspect-ratio: auto;
  max-height: none;
}

.screen-viewport.tall {
  aspect-ratio: auto;
  max-height: none;
}

.project-index {
  padding: clamp(78px, 12vw, 138px) 0;
  border-top: 1px solid var(--line-soft);
}

.index-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.index-heading h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.index-heading p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.65;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.index-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.035);
  transition: background 180ms ease, transform 180ms ease;
}

.index-card:hover,
.index-card:focus-visible {
  background: rgba(255, 255, 255, 0.065);
}

.index-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.82;
  border-radius: 12px;
  background: #101116;
}

.index-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 500ms ease;
}

.index-card:hover .index-thumb img,
.index-card:focus-visible .index-thumb img {
  transform: scale(1.06) translateY(-2%);
}

.index-meta {
  display: grid;
  gap: 8px;
}

.index-meta span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.index-meta strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.index-meta small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.process {
  padding: clamp(86px, 13vw, 150px) 0;
  border-top: 1px solid var(--line-soft);
}

.section-title h2,
.contact h2 {
  max-width: 900px;
  font-size: clamp(2.65rem, 7.2vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(44px, 8vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 58px;
  color: var(--dim);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
}

.standards {
  position: relative;
  min-height: 260svh;
  overflow: visible;
  border-top: 1px solid var(--line-soft);
}

.standards::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 255, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}

.standards-sticky {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(320px, 0.5fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
  overflow: visible;
  padding: 16vh 0 20vh;
}

.standards-copy {
  position: sticky;
  align-self: start;
  z-index: 3;
  top: 20vh;
  max-width: 690px;
}

.standards-copy h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(3.2rem, 7.2vw, 7.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.standards-copy p {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.72;
}

.standards-list {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 42vh;
  padding: 8vh 0 26vh;
}

.standard-item {
  position: relative;
  width: min(390px, 100%);
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(4, 5, 8, 0.62);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  justify-self: end;
}

.standard-item:nth-child(even) {
  margin-right: 0;
}

.standard-item span {
  display: block;
  margin-bottom: 24px;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.standard-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1;
}

.standard-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.standards-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.standards-motion {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.06);
}

.standards-motion::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 160, 132, 0.22), transparent 68%);
  filter: blur(42px);
}

.standards-lottie {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1100px, 112vw);
  height: min(900px, 110vh);
}

.contact {
  display: grid;
  min-height: 86svh;
  place-items: center start;
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}

.contact-copy {
  max-width: 940px;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.contact .button {
  margin-top: 42px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@keyframes beamDrift {
  0% {
    transform: translateX(-24vw) rotate(-16deg);
  }

  100% {
    transform: translateX(24vw) rotate(-16deg);
  }
}

@keyframes cueLine {
  0% {
    transform: translateX(-18px);
    opacity: 0;
  }

  28%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(54px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .project-scene {
    min-height: 320svh;
  }

  .project-sticky {
    width: min(calc(100% - 40px), var(--max));
  }

  .project-copy {
    max-width: 620px;
  }

  .project-copy p {
    max-width: 560px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .work-heading {
    display: grid;
    align-items: start;
  }

  .industry-grid {
    flex-direction: column;
    min-height: auto;
  }

  .industry-card {
    flex: 1 1 auto;
    min-height: 310px;
  }

  .industry-card:hover,
  .industry-card:focus-within {
    flex: 1 1 auto;
  }

  .industry-card p,
  .card-link {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .standards-sticky {
    grid-template-columns: minmax(0, 0.46fr) minmax(280px, 0.54fr);
    gap: 32px;
  }

  .standard-item {
    width: min(340px, 100%);
  }

  .standard-item:nth-child(even) {
    margin-right: 0;
  }

  .standards-lottie {
    width: min(900px, 120vw);
    height: min(760px, 104vh);
  }

  .standards-motion {
    opacity: 0.32;
  }

  .index-heading {
    display: grid;
    align-items: start;
  }

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

  .index-card {
    grid-template-columns: minmax(118px, 0.38fr) minmax(0, 1fr);
    align-items: center;
  }

  .index-thumb {
    aspect-ratio: 0.9;
  }

  .process-step {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step span {
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --screen-x-inset: 12px;
    --screen-top-inset: 66px;
    --screen-bottom-inset: 12px;
  }

  .topbar {
    top: 12px;
    width: calc(100% - 24px);
    gap: 8px;
  }

  .brand {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .brand img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
  }

  .nav-links {
    display: none;
  }

  .section-frame,
  .project-sticky {
    width: calc(100% - 48px);
  }

  .hero {
    min-height: 96svh;
    padding: 104px 0 74px;
    place-items: end start;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.42rem, 10.4vw, 2.78rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .hero p {
    margin-top: 24px;
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .button {
    width: 100%;
    min-height: 56px;
    margin-top: 30px;
  }

  .work {
    padding: 76px 0;
  }

  .industry {
    padding: 76px 0;
  }

  .work-heading h2 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .industry-grid {
    border-radius: 14px;
  }

  .industry-card {
    min-height: 0;
  }

  .industry-card-panel {
    min-height: 360px;
    padding: 24px;
  }

  .industry-card h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .industry-card p {
    max-width: 100%;
  }

  .industry-number {
    top: 24px;
    left: 24px;
  }

  .work-controls {
    justify-content: space-between;
  }

  .work-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    width: auto;
    margin-inline: -24px;
    padding: 8px 24px 28px;
    scroll-padding-inline: 24px;
    touch-action: pan-x pan-y;
  }

  .work-card {
    flex: 0 0 calc(100vw - 72px);
    max-width: calc(100vw - 72px);
    opacity: 0.5;
    transform: scale(0.94);
  }

  .work-card-media {
    aspect-ratio: 1.02;
    border-radius: 16px;
  }

  .work-card-copy strong {
    font-size: 1.55rem;
  }

  .work-card-copy small {
    font-size: 0.9rem;
  }

  .work-card-copy {
    min-height: 118px;
  }

  .project-scene {
    min-height: 320svh;
  }

  .project-sticky {
    width: calc(100% - 48px);
  }

  .project-copy {
    top: 38%;
    max-width: 342px;
    opacity: var(--copy);
    transform:
      translate3d(calc((1 - var(--enter)) * -18px + var(--exit) * var(--side) * -42px), calc(-50% + (1 - var(--enter)) * 24px), 0)
      scale(calc(1 - var(--enter) * 0.03));
  }

  .project-number {
    margin-bottom: 16px;
    font-size: clamp(3rem, 22vw, 5.4rem);
  }

  .project-copy h2 {
    font-size: clamp(2.2rem, 13.2vw, 4rem);
    line-height: 0.94;
  }

  .project-copy p {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .scroll-cue {
    right: auto;
    bottom: 24px;
    left: 0;
  }

  .screen-viewport {
    border-radius: calc(7px + (1 - var(--full)) * 12px + var(--exit) * 10px);
    transform:
      translate3d(
        calc(-50% + (1 - var(--enter)) * var(--side) * 34vw + var(--exit) * var(--side) * -36vw),
        calc(-50% + (1 - var(--enter)) * 8vh + var(--exit) * 5vh),
        0
      )
      scale(calc(0.58 + var(--enter) * 0.42 - var(--exit) * 0.28));
  }

  .section-title h2,
  .contact h2 {
    font-size: clamp(2.55rem, 14.6vw, 4.9rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .process {
    padding: 86px 0;
  }

  .standards {
    min-height: 260svh;
    overflow: visible;
  }

  .standards-sticky {
    display: grid;
    min-height: 260svh;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 78px 0 34px;
  }

  .standards-copy {
    position: sticky;
    top: 92px;
    max-width: 420px;
  }

  .standards-copy h2 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
  }

  .standards-copy p {
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .standards-motion {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    opacity: 0.24;
  }

  .standards-lottie {
    width: min(720px, 150vw);
    height: min(620px, 100vh);
  }

  .standards-list {
    align-items: stretch;
    gap: 38vh;
    padding: 24vh 0 34vh;
  }

  .standard-item {
    width: 100%;
    padding: 16px;
  }

  .standard-item:nth-child(even) {
    margin-right: 0;
  }

  .project-index {
    padding: 76px 0;
  }

  .index-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .index-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .index-thumb {
    border-radius: 10px;
  }

  .index-meta strong {
    font-size: 1.08rem;
  }

  .index-meta small {
    font-size: 0.84rem;
  }

  .process-steps {
    margin-top: 42px;
  }

  .process-step {
    min-height: 200px;
    padding: 28px 0;
  }

  .contact {
    min-height: 78svh;
    padding: 78px 0 56px;
  }
}

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

  .project-scene {
    min-height: auto;
    padding: 84px 0;
  }

  .project-sticky {
    position: relative;
    display: grid;
    min-height: auto;
    grid-template-columns: 0.42fr minmax(0, 0.58fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    padding: 84px 0;
  }

  .screen-viewport,
  .screen-viewport img,
  .project-copy,
  .scroll-light {
    transform: none !important;
  }

  .project-copy {
    position: relative;
    top: auto;
    left: auto;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .screen-viewport {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 670px);
    height: auto;
    aspect-ratio: 0.72;
    border-radius: 18px;
  }

  .screen-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .standards {
    min-height: auto;
    padding: 84px 0;
  }

  .standards-sticky {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(0, 0.5fr) minmax(320px, 0.5fr);
    gap: clamp(32px, 6vw, 72px);
    overflow: visible;
    padding: 0;
  }

  .standards-copy {
    position: relative;
    top: auto;
    max-width: 850px;
  }

  .standards-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
  }

  .standard-item {
    position: relative;
    top: auto;
    left: auto;
    width: min(390px, 100%);
    opacity: 1 !important;
    transform: none !important;
  }

  .standards-motion {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }

  .standards-lottie {
    width: min(900px, 110vw);
    height: min(720px, 100vh);
  }
}
