:root {
  --black: #050608;
  --ink: #090b1a;
  --panel: rgba(9, 11, 26, 0.78);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7f7fa;
  --muted: rgba(247, 247, 250, 0.68);
  --purple: #5b3df5;
  --navy: #090b1a;
  --cyan: #00d9ff;
  --silver: #a7a9b5;
  --font-sans: "Inter", Arial, sans-serif;
  --font-display: "Sora", Arial, sans-serif;
  --hero-video-overlay-opacity: 0.48;
}

@font-face {
  font-family: "Sora";
  src:
    url("assets/fonts/Sora-Variable.woff2") format("woff2"),
    url("assets/fonts/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-Variable.woff2") format("woff2"),
    url("assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
}

body.is-intro {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none;
  }
}

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

.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: 38px;
    height: 38px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 180ms ease;
    will-change: transform;
  }

  .cursor.is-visible {
    opacity: 1;
  }

  .cursor__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(247, 247, 250, 0.82);
    border-radius: 50%;
    box-shadow:
      0 0 18px rgba(91, 61, 245, 0.34),
      inset 0 0 12px rgba(0, 217, 255, 0.12);
    transform: scale(1);
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .cursor__ring::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 12px rgba(91, 61, 245, 0.72);
    transform: translate(-50%, -50%);
  }

  .cursor.is-hovering .cursor__ring {
    border-color: rgba(0, 217, 255, 0.9);
    box-shadow:
      0 0 28px rgba(91, 61, 245, 0.48),
      0 0 14px rgba(0, 217, 255, 0.24),
      inset 0 0 16px rgba(0, 217, 255, 0.16);
    transform: scale(1.55);
  }

  .cursor.is-pressed .cursor__ring {
    transform: scale(0.86);
  }
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 20%, rgba(0, 217, 255, 0.3), transparent 34%),
    radial-gradient(circle at 20% 68%, rgba(91, 61, 245, 0.3), transparent 32%),
    var(--navy);
  pointer-events: none;
  transition: opacity 650ms ease, visibility 650ms ease, background 850ms ease;
}

.intro.is-handoff {
  background: transparent;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro__glow {
  position: absolute;
  inset: 0;
  background-image: url("assets/immersive-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: saturate(0.8) contrast(1.2);
  transform: scale(1.04);
  transition: opacity 850ms ease;
}

.intro.is-handoff .intro__glow {
  opacity: 0;
}

.intro__word {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  color: rgba(247, 247, 250, 0.12);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10.8vw, 9.8rem);
  font-weight: 300;
  line-height: 0.86;
  white-space: nowrap;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.16);
  transform: translate(-50%, -50%);
  transform-origin: top left;
  will-change: transform;
}

.intro__word-base,
.intro__word-fill {
  display: block;
}

.intro__word-fill {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  overflow: hidden;
  color: var(--text);
  white-space: nowrap;
  transition: width 80ms linear;
}

.intro__word.is-moving .intro__word-base {
  opacity: 0;
}

.site-shell {
  opacity: 0;
  transition: opacity 850ms ease;
}

body.is-handoff .site-shell,
body.is-ready .site-shell {
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(9, 11, 26, 0.72), rgba(9, 11, 26, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 15vw, 210px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 64px) 128px;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/immersive-hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(1.1);
  transform: scale(1.02);
}
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(rgba(0, 0, 0, var(--hero-video-overlay-opacity)), rgba(0, 0, 0, var(--hero-video-overlay-opacity))),
    radial-gradient(circle at 74% 18%, rgba(0, 217, 255, 0.12), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(91, 61, 245, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(9, 11, 26, 0.96), rgba(9, 11, 26, 0.56) 45%, rgba(9, 11, 26, 0.24)),
    linear-gradient(0deg, rgba(9, 11, 26, 0.9), transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(950px, 100%);
}

.kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.4rem, 6.8vw, 6.2rem);
  line-height: 0.9;
}

.hero__attention {
  display: inline-block;
}

.hero__attention,
.hero__rest {
  opacity: 0;
}

body.is-ready .hero__attention {
  opacity: 1;
}

.hero__rest {
  display: inline-block;
  transform: translateY(0.16em);
  transition: opacity 650ms ease 120ms, transform 650ms ease 120ms;
}

body.is-ready .hero__rest {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5.7vw, 6.5rem);
  line-height: 0.95;
}

h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

.hero__copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 112px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 58px;
  color: var(--text);
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 650ms ease 520ms, transform 650ms ease 520ms;
}

body.is-ready .scroll-cue {
  opacity: 0.86;
  transform: translateX(-50%) translateY(0);
}

.scroll-cue__mouse {
  position: relative;
  width: 23px;
  height: 36px;
  border: 1px solid rgba(247, 247, 250, 0.84);
  border-radius: 999px;
  box-shadow:
    0 0 18px rgba(91, 61, 245, 0.24),
    inset 0 0 10px rgba(0, 217, 255, 0.1);
  animation: scrollFloat 2.6s ease-in-out infinite;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.scroll-cue__dot {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 12px rgba(247, 247, 250, 0.7);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.scroll-cue:hover .scroll-cue__mouse {
  border-color: rgba(0, 217, 255, 0.9);
  box-shadow:
    0 0 24px rgba(91, 61, 245, 0.36),
    0 0 14px rgba(0, 217, 255, 0.2),
    inset 0 0 12px rgba(0, 217, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--text);
  box-shadow: 0 0 32px rgba(91, 61, 245, 0.28);
}

.button--ghost {
  background: rgba(247, 247, 250, 0.04);
  color: var(--text);
}

.hero__meta {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero__meta span {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(9, 11, 26, 0.78);
  color: var(--silver);
  font-size: clamp(0.62rem, 0.74vw, 0.73rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__meta span::before {
  content: "";
  width: 8px;
  height: 14px;
  flex: 0 0 auto;
  background: url("assets/brand/NST Symbol.svg") center / contain no-repeat;
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(82px, 11vw, 150px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(91, 61, 245, 0.12), transparent 26%),
    radial-gradient(circle at 84% 48%, rgba(0, 217, 255, 0.08), transparent 25%),
    linear-gradient(180deg, var(--black), var(--ink) 50%, var(--black)),
    var(--black);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  min-height: 390px;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  background: var(--panel);
  outline: 0;
}

.service:hover,
.service:focus-visible {
  background:
    linear-gradient(145deg, rgba(91, 61, 245, 0.16), rgba(0, 217, 255, 0.08)),
    var(--panel);
}

.service__number,
.work-slide__content p {
  display: block;
  margin: 0;
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(247, 247, 250, 0.04);
}

.service__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
  transition: opacity 420ms ease, transform 520ms ease, filter 420ms ease;
}

.service__image--hover {
  opacity: 0;
}

.service:hover .service__image--base,
.service:focus-visible .service__image--base {
  opacity: 0;
}

.service:hover .service__image--hover,
.service:focus-visible .service__image--hover {
  opacity: 1;
  filter: saturate(1.06) contrast(1.12) brightness(0.88);
  transform: scale(1.05);
}

.service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(5, 6, 8, 0.88)),
    linear-gradient(90deg, rgba(5, 6, 8, 0.5), transparent 62%);
}

.service__image-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section__head {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-bottom: 48px;
}

.brand-strip {
  overflow: hidden;
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.brand-strip__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.8fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.brand-strip__head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 6rem);
}

.logo-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(91, 61, 245, 0.16), rgba(9, 11, 26, 0.26) 38%, rgba(9, 11, 26, 0.06)),
    rgba(247, 247, 250, 0.03);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(54px, 12vw, 180px);
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), rgba(9, 11, 26, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), rgba(9, 11, 26, 0));
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  min-height: clamp(138px, 12vw, 184px);
  width: max-content;
  animation: logoMarquee 34s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee img {
  display: block;
  width: clamp(148px, 13vw, 238px);
  height: clamp(88px, 7.8vw, 132px);
  margin: 0 clamp(26px, 3.6vw, 68px);
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) brightness(1.7);
  transform: translateY(0) scale(1);
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 240ms ease;
  will-change: transform;
}

.logo-marquee:hover img {
  opacity: 0.48;
  filter: grayscale(1) brightness(1.25);
}

.logo-marquee img:hover {
  opacity: 1;
  filter: grayscale(0.35) brightness(2.05);
  transform: translateY(-6px) scale(1.04);
}

.work-carousel {
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(91, 61, 245, 0.16), rgba(0, 217, 255, 0.07)),
    rgba(247, 247, 250, 0.03);
}

.work-carousel__viewport {
  position: relative;
  aspect-ratio: 2.84 / 1;
  min-height: 0;
  overflow: hidden;
}

.work-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 1px;
  background: var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 0.9, 0.2, 1);
}

.work-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.work-slide__media {
  position: relative;
  min-width: 0;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.06), transparent 42%),
    #050611;
}

.work-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 26, 0.32), rgba(9, 11, 26, 0)),
    linear-gradient(0deg, rgba(9, 11, 26, 0.62), rgba(9, 11, 26, 0.04));
  pointer-events: none;
}

.work-slide__media img,
.work-slide__media video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.86) brightness(0.82);
  transition:
    opacity 620ms ease,
    filter 620ms ease;
}

.work-slide.is-active .work-slide__media img,
.work-slide.is-active .work-slide__media video {
  opacity: 0.92;
  filter: saturate(0.9) brightness(0.88);
}

.work-slide__content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(28px, 3.8vw, 56px);
  background:
    linear-gradient(150deg, rgba(91, 61, 245, 0.24), rgba(0, 217, 255, 0.09)),
    rgba(9, 11, 26, 0.8);
}

.work-slide__content::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.work-slide__content h3 {
  position: relative;
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.25vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
}

.work-slide__content span {
  position: relative;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.68;
}

.work-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
}

.work-carousel__button {
  min-width: 84px;
  border: 0;
  background: transparent;
  color: var(--silver);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.work-carousel__button:hover {
  color: var(--text);
}

.work-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.work-carousel__dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(247, 247, 250, 0.28);
  transition:
    background 180ms ease,
    width 180ms ease;
}

.work-carousel__dots button.is-active {
  width: 54px;
  background: var(--cyan);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(91, 61, 245, 0.12), rgba(0, 217, 255, 0.05)),
    rgba(247, 247, 250, 0.04);
}

label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(9, 11, 26, 0.58);
  color: var(--text);
  font: inherit;
  min-height: 48px;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
}

.contact-form {
  min-width: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(140px, 0.5fr) minmax(190px, 0.7fr) minmax(240px, 0.9fr);
  gap: clamp(30px, 4.4vw, 72px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 64px) 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(91, 61, 245, 0.14), transparent 25%),
    radial-gradient(circle at 86% 70%, rgba(0, 217, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--ink), var(--black));
}

.footer__brand,
.footer__nav,
.footer__contact,
.footer__focus {
  min-width: 0;
}

.footer__logo {
  display: inline-flex;
  width: clamp(150px, 14vw, 210px);
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.footer__nav,
.footer__contact,
.footer__focus {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer__nav a,
.footer__contact a,
.footer__focus span,
.footer__bottom {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.footer__nav a,
.footer__contact a {
  transition: color 180ms ease;
}

.footer__nav a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: var(--text);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.footer__socials .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 247, 250, 0.04);
  color: var(--silver);
}

.footer__socials .social-link:hover {
  border-color: rgba(0, 217, 255, 0.72);
  color: var(--text);
  box-shadow: 0 0 22px rgba(91, 61, 245, 0.28);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__focus span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__focus span::before {
  content: "";
  width: 8px;
  height: 14px;
  flex: 0 0 auto;
  background: url("assets/brand/NST Symbol.svg") center / contain no-repeat;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer__bottom p {
  margin: 0;
  color: rgba(167, 169, 181, 0.72);
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: translate(-50%, 13px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 13px);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .scroll-cue__mouse,
  .scroll-cue__dot,
  .logo-marquee__track {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .scroll-cue {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: center;
    margin-top: 34px;
    transform: translateY(10px);
  }

  body.is-ready .scroll-cue {
    transform: translateY(0);
  }

  .hero__meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .hero__meta span {
    min-height: 58px;
  }

  .footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr);
  }
}

@media (max-width: 860px) {
  .header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    background: linear-gradient(to bottom, rgba(9, 11, 26, 0.88), rgba(9, 11, 26, 0.48), rgba(9, 11, 26, 0));
  }

  .section {
    scroll-margin-top: 0;
  }

  .brand {
    width: clamp(136px, 42vw, 178px);
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 156px;
    padding-bottom: 36px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.25rem, 14vw, 5.2rem);
  }

  .hero__meta,
  .brand-strip__head,
  .section--split,
  .service-grid,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .hero__meta span {
    min-height: 54px;
  }

  .brand-strip__head {
    gap: 18px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-carousel__viewport {
    aspect-ratio: auto;
    min-height: clamp(660px, 122vw, 780px);
  }

  .work-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .work-slide__media {
    height: auto;
  }

  .work-slide__content h3 {
    font-size: clamp(2rem, 7vw, 3.8rem);
  }
}

@media (max-width: 520px) {
  .header {
    padding: 18px 20px 26px;
  }

  .nav {
    gap: 8px 14px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .kicker {
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .hero {
    padding-top: 142px;
    padding-bottom: 30px;
  }

  .intro__word {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .section {
    padding: 72px 20px;
  }

  .hero__copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero__actions .button {
    width: 100%;
  }

  .logo-marquee img {
    width: 140px;
    height: 86px;
    margin: 0 22px;
  }

  .work-carousel__viewport {
    min-height: clamp(640px, 172vw, 720px);
  }

  .work-slide {
    grid-template-rows: auto 1fr;
  }

  .work-slide__content {
    gap: 14px;
    padding: 28px 22px;
  }

  .work-slide__content::before {
    inset: 12px;
  }

  .work-slide__content h3 {
    font-size: clamp(1.9rem, 9vw, 3.1rem);
  }

  .work-carousel__controls {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
    padding: 16px 14px;
  }

  .work-carousel__button {
    min-width: auto;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .work-carousel__button:first-child {
    text-align: left;
  }

  .work-carousel__button:last-child {
    text-align: right;
  }

  .work-carousel__dots {
    min-width: 0;
    gap: 8px;
  }

  .work-carousel__dots button {
    width: 28px;
  }

  .work-carousel__dots button.is-active {
    width: 42px;
  }

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

  .hero__meta span {
    justify-content: flex-start;
    min-height: 50px;
  }

  .service {
    min-height: 340px;
  }

  .service__media {
    min-height: 120px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding: 56px 20px 28px;
  }

  .footer__bottom {
    gap: 14px;
  }
}
