:root {
  --ink: #f4f0fa;
  --muted: #aaa2b4;
  --bg: #05020a;
  --panel: #0a0610;
  --violet: #a55cff;
  --cyan: #2de1e9;
  --line: rgba(255, 255, 255, 0.14);
  --display: "Unbounded", sans-serif;
  --text: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--cyan);
  color: #05020a;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 16px;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px clamp(20px, 4vw, 70px);
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(5, 2, 10, 0.78);
  backdrop-filter: blur(18px);
  padding-block: 15px;
}
.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 600 18px var(--display);
}
.logo i {
  display: block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 13px;
}
.desktop-nav a {
  color: #d9d2e2;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #fff;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-picker select {
  appearance: none;
  color: var(--ink);
  background: rgba(5, 2, 10, 0.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 30px 12px 14px;
  font: 600 11px var(--text);
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 11px) 50%;
  background-size: 4px 4px;
  background-repeat: no-repeat;
}
.language-picker option {
  color: #05020a;
  background: #fff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 13px;
  background: rgba(5, 2, 10, 0.28);
  backdrop-filter: blur(12px);
}
.header-cta b {
  color: var(--cyan);
  margin-left: 10px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  z-index: -3;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 2, 8, 0.12) 28%,
      rgba(4, 2, 8, 0.43) 45%,
      rgba(4, 2, 8, 0.86) 100%
    ),
    linear-gradient(0deg, rgba(4, 2, 8, 0.72), transparent 42%),
    radial-gradient(circle at 35% 42%, rgba(96, 33, 165, 0.2), transparent 40%);
}
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(150px, 19vh, 220px) clamp(20px, 7vw, 130px) 100px;
}
.eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #bcb4c8;
}
.eyebrow {
  margin-bottom: 26px;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  vertical-align: middle;
  margin-right: 12px;
}
.hero h1 {
  width: min(58vw, 920px);
  margin: 0;
  font: 600 clamp(3.2rem, 6.2vw, 7rem)/0.96 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-align: right;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px #f1e9f8;
  text-shadow: 0 0 28px rgba(156, 85, 255, 0.3);
}
.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  margin-top: clamp(22px, 4vh, 44px);
  max-width: 1180px;
}
.hero-bottom > p {
  max-width: 540px;
  margin: 0;
  color: #d6cfdd;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
}
.circle-link {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  line-height: 1.3;
  background: rgba(7, 3, 12, 0.16);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.circle-link b {
  font-size: 24px;
  color: var(--cyan);
  font-weight: 400;
}
.circle-link:hover {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(-8deg);
}
.hero-meta {
  position: absolute;
  left: clamp(20px, 4vw, 70px);
  right: clamp(20px, 4vw, 70px);
  bottom: 25px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #aaa2b3;
}
.section {
  position: relative;
  padding: clamp(72px, 8vw, 128px) clamp(20px, 6vw, 110px);
}
.manifest {
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(165, 92, 255, 0.15),
      transparent 30%
    ),
    var(--bg);
}
.manifest-text {
  max-width: 1460px;
  margin: 34px 0 0;
  font: 500 clamp(2rem, 4.2vw, 5.2rem)/1.1 var(--display);
  letter-spacing: -0.055em;
}
.manifest-text em,
.section-head h2 i,
.process-title h2 i,
.reviews h2 i,
.why h2 i,
.contact h2 i {
  font-style: normal;
  color: var(--cyan);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(44px, 6vw, 82px);
  border-top: 1px solid var(--line);
}
.metrics article {
  padding: 28px 20px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.metrics article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.metrics strong {
  font: 600 clamp(2.5rem, 5vw, 5rem) var(--display);
  color: var(--violet);
}
.metrics span {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.services {
  background: linear-gradient(180deg, #0b0711, #07040c);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 76px);
}
.section-head h2,
.process-title h2,
.why h2,
.contact h2 {
  font: 600 clamp(3rem, 6.3vw, 7.5rem)/1.02 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
  margin: 20px 0 0;
}
.section-head > p {
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
  margin: 0 0 8px;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 150px 35px;
  gap: 30px;
  align-items: center;
  padding: 38px 12px;
  border-bottom: 1px solid var(--line);
  transition: 0.35s;
}
.service-card:hover {
  padding-inline: 30px;
  background: linear-gradient(
    90deg,
    rgba(165, 92, 255, 0.13),
    rgba(45, 225, 233, 0.05)
  );
}
.service-card > span {
  color: var(--cyan);
  font-size: 11px;
}
.service-card h3 {
  font: 500 clamp(1.4rem, 2.4vw, 2.8rem) var(--display);
  margin: 0;
}
.service-card p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 13px 0 0;
}
.service-card > b {
  text-align: right;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #cac2d3;
}
.service-card > i {
  font-style: normal;
  font-size: 26px;
  color: var(--violet);
}
.portfolio {
  background: #f0edf3;
  color: #100c15;
}
.portfolio .section-kicker {
  color: #6f6875;
}
.portfolio .section-head > p {
  color: #625b67;
}
.portfolio .section-head h2 i {
  color: #6e28c9;
}
.projects {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.project-tabs {
  display: flex;
  flex-direction: column;
  max-height: 520px;
  overflow-y: auto;
  border-top: 1px solid rgba(16, 12, 21, 0.18);
  scrollbar-width: thin;
}
.project-tabs button {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  width: 100%;
  padding: 18px 4px;
  border: 0;
  border-bottom: 1px solid rgba(16, 12, 21, 0.18);
  color: #77707d;
  background: transparent;
  font: 600 clamp(0.8rem, 1vw, 0.95rem) var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s, padding 0.25s, background 0.25s;
}
.project-tabs button span {
  color: #948b9b;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.project-tabs button:hover,
.project-tabs button[aria-selected="true"] {
  padding-left: 12px;
  color: #100c15;
  background: rgba(110, 40, 201, 0.08);
}
.project-tabs button[aria-selected="true"] span {
  color: #6e28c9;
}
.project-tabs button:focus-visible,
.project-thumbnails button:focus-visible {
  outline: 2px solid #6e28c9;
  outline-offset: 3px;
}
.project-panels,
.project {
  min-width: 0;
}
.project[hidden] {
  display: none;
}
.project-image {
  position: relative;
  overflow: hidden;
  background: #151019;
  aspect-ratio: 2.1 / 1;
}
.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.2s ease;
}
.project-image > span {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 8px 11px;
  background: rgba(10, 6, 15, 0.85);
  color: white;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.project-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(76px, 110px);
  justify-content: start;
  gap: 10px;
  margin-top: 12px;
  padding: 3px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.project-thumbnails button {
  position: relative;
  aspect-ratio: 1.55;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #151019;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.project-thumbnails button:hover,
.project-thumbnails button.active {
  opacity: 1;
}
.project-thumbnails button.active {
  border-color: #6e28c9;
}
.project-thumbnails button:hover {
  transform: translateY(-2px);
}
.project-thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.project-copy {
  padding: 18px 4px 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: start;
}
.project-copy p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #817987;
  margin: 7px 0 0;
}
.project-copy h3 {
  font: 600 clamp(1.7rem, 2.6vw, 3.1rem) var(--display);
  letter-spacing: -0.04em;
  margin: 0;
}
.project-copy > span {
  grid-column: 2;
  max-width: 650px;
  color: #615969;
  line-height: 1.55;
}
.project-copy b {
  grid-column: 3;
  grid-row: 1/3;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  background:
    radial-gradient(
      circle at 10% 60%,
      rgba(45, 225, 233, 0.1),
      transparent 30%
    ),
    var(--bg);
}
.process-title {
  position: sticky;
  top: 130px;
  align-self: start;
}
.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}
.process-steps li > span {
  color: var(--cyan);
  font-size: 11px;
}
.process-steps h3 {
  font: 500 clamp(1.5rem, 2.4vw, 2.7rem) var(--display);
  margin: 0;
}
.process-steps p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 0;
}
.reviews {
  background: linear-gradient(145deg, #0e0717, #05020a 65%);
  overflow: hidden;
}
.reviews .section-head {
  grid-template-columns: 1fr auto;
}
.slider-controls {
  display: flex;
  gap: 12px;
}
.slider-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
}
.slider-controls button:hover {
  background: var(--ink);
  color: var(--bg);
}
.slider-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}
.slider-controls button:disabled:hover {
  color: inherit;
  background: transparent;
}
.review-viewport {
  overflow: hidden;
}
.review-track {
  display: flex;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.review {
  min-width: calc(50% - 14px);
  margin-right: 28px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(165, 92, 255, 0.1),
    rgba(45, 225, 233, 0.025)
  );
  display: flex;
  min-height: 350px;
  flex-direction: column;
}
.quote {
  font: 600 3.8rem/0.8 var(--display);
  color: var(--violet);
}
.review blockquote {
  font: 500 clamp(1.1rem, 1.55vw, 1.65rem)/1.45 var(--display);
  letter-spacing: -0.035em;
  margin: 18px 0 36px;
}
.review > div:last-child {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review small {
  color: var(--muted);
}
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.slider-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #30293a;
  cursor: pointer;
}
.slider-dots button.active {
  background: var(--cyan);
}
.slider-dots button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.why {
  padding-top: 0;
  background: var(--bg);
}
.why-card {
  border-radius: 36px;
  padding: clamp(38px, 7vw, 100px);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(45, 225, 233, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, #6c25bc, #27103e 65%, #101018);
  overflow: hidden;
}
.why-card h2 {
  max-width: 1300px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.why-grid p {
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.55;
  margin: 0;
}
.why-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-grid li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}
.why-grid li:before {
  content: "✦";
  color: var(--cyan);
  margin-right: 14px;
}
.contact {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(165, 92, 255, 0.23),
      transparent 28%
    ),
    #05020a;
}
.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.65fr);
  align-items: start;
  gap: clamp(48px, 8vw, 130px);
}
.contact-main h2 {
  max-width: 1200px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-field-wide {
  grid-column: 1/-1;
}
.form-field label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-field label small {
  opacity: 0.65;
  font: inherit;
  text-transform: lowercase;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
  font: 500 15px/1.5 var(--text);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 1px 0 var(--cyan);
}
.form-field input:user-invalid {
  border-color: #ff7d9c;
}
.form-submit {
  grid-column: 1/-1;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: var(--cyan);
  color: #061013;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}
.form-submit:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.form-submit b {
  font-size: 24px;
}
.form-status {
  grid-column: 1/-1;
  min-height: 1.4em;
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
}
.contact-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: clamp(80px, 10vw, 145px);
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.contact-bottom div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-bottom small {
  text-transform: uppercase;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.contact-bottom a,
.contact-bottom span {
  font-size: clamp(13px, 1.3vw, 18px);
}
footer {
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #777080;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
footer i {
  font-style: normal;
}
.mobile-menu {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .site-header {
    padding-inline: 24px;
  }
  .section {
    padding-inline: 32px;
  }
  .section-head {
    gap: 4vw;
  }
  .project-copy {
    grid-template-columns: 80px 1fr;
  }
  .project-copy b {
    grid-column: 2;
    grid-row: auto;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .process-title {
    position: static;
  }
  .review {
    min-width: 75%;
  }
  .contact-main h2 {
    font-size: 5.7vw;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .site-header,
  .site-header.scrolled {
    position: fixed;
    grid-template-columns: 1fr auto auto;
    padding: 16px 20px;
    background: linear-gradient(
      180deg,
      rgba(5, 2, 10, 0.88),
      rgba(5, 2, 10, 0.35)
    );
    border: 0;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 30;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(5, 2, 10, 0.5);
    place-content: center;
    gap: 7px;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    border-top: 1px solid white;
    transition: 0.25s;
  }
  .hero-content {
    padding: 110px 20px 115px;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 2, 8, 0.94) 5%, rgba(4, 2, 8, 0.24) 65%),
      linear-gradient(90deg, transparent, rgba(4, 2, 8, 0.45));
  }
  .hero h1 {
    width: min(100%, 680px);
    font-size: clamp(2.55rem, 10.5vw, 5.5rem);
    line-height: 1.02;
  }
  .hero-bottom {
    align-items: center;
    margin-top: 28px;
  }
  .hero-bottom > p {
    font-size: 14px;
    max-width: 70%;
  }
  .circle-link {
    width: 92px;
    height: 92px;
    flex: none;
  }
  .circle-link span {
    display: none;
  }
  .hero-meta {
    display: none;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 19;
    background:
      radial-gradient(
        circle at 70% 20%,
        rgba(165, 92, 255, 0.2),
        transparent 35%
      ),
      rgba(5, 2, 10, 0.99);
    padding: 110px 24px 35px;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .mobile-menu.open {
    transform: none;
  }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font: 500 clamp(2rem, 8vw, 4rem) var(--display);
    text-transform: uppercase;
  }
  .mobile-menu > div {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .manifest-text {
    font-size: 8vw;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .metrics article,
  .metrics article + article {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head > p {
    max-width: 600px;
  }
  .service-card {
    grid-template-columns: 45px 1fr 25px;
    gap: 15px;
    padding: 28px 0;
  }
  .service-card > b {
    grid-column: 2;
    text-align: left;
  }
  .service-card > i {
    grid-column: 3;
    grid-row: 1/3;
  }
  .projects {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .project-tabs {
    flex-direction: row;
    gap: 8px;
    max-height: none;
    padding: 2px 2px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 0;
    scrollbar-width: thin;
  }
  .project-tabs button {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(16, 12, 21, 0.18);
    border-radius: 999px;
    white-space: nowrap;
  }
  .project-tabs button:hover,
  .project-tabs button[aria-selected="true"] {
    padding-left: 14px;
  }
  .project-image,
  .project-wide .project-image {
    aspect-ratio: 1.6;
  }
  .project-copy {
    grid-template-columns: 65px 1fr;
  }
  .review {
    min-width: 88%;
    min-height: 340px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-main {
    align-items: start;
  }
  .contact-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .contact-bottom div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 85px 20px;
  }
  .hero-video {
    object-position: 58% center;
  }
  .hero-content {
    padding-bottom: 95px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 18px;
  }
  .hero-bottom > p {
    font-size: 12px;
  }
  .circle-link {
    width: 76px;
    height: 76px;
  }
  .hero h1 {
    width: 100%;
    font-size: clamp(2.05rem, 11vw, 3.65rem);
    letter-spacing: -0.055em;
  }
  .section-head {
    margin-bottom: 55px;
  }
  .section-head h2,
  .process-title h2,
  .why h2,
  .contact h2 {
    font-size: 11vw;
  }
  .manifest-text {
    font-size: 9vw;
  }
  .service-card {
    grid-template-columns: 32px 1fr 20px;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card p {
    font-size: 13px;
  }
  .project-image,
  .project-wide .project-image {
    aspect-ratio: 1.35;
  }
  .project-copy {
    display: block;
  }
  .project-copy h3 {
    margin: 8px 0 12px;
  }
  .project-copy > span {
    font-size: 13px;
    display: block;
  }
  .project-copy b {
    display: block;
    margin-top: 15px;
  }
  .process-steps li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .review {
    min-width: 94%;
    margin-right: 14px;
    padding: 24px;
    min-height: 330px;
  }
  .review blockquote {
    font-size: 1.1rem;
  }
  .why-card {
    border-radius: 22px;
    padding: 35px 24px;
  }
  .why-grid p {
    font-size: 15px;
  }
  .contact-main {
    display: grid;
  }
  .contact-main h2 {
    font-size: 10.8vw;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    border-radius: 20px;
  }
  .form-field-wide,
  .form-submit,
  .form-status {
    grid-column: auto;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
  }
  .contact-bottom div:last-child {
    grid-column: auto;
  }
  footer {
    gap: 18px;
    flex-wrap: wrap;
  }
  footer span:nth-child(2) {
    display: none;
  }
}
@media (max-height: 560px) and (orientation: landscape) {
  .hero-content {
    padding-top: 90px;
    padding-bottom: 48px;
  }
  .hero h1 {
    width: min(58vw, 680px);
    font-size: clamp(2rem, 7vw, 4.25rem);
    line-height: 0.94;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
