:root {
  color-scheme: dark;
  --ink: #050608;
  --ink-soft: #0a0c10;
  --ink-lift: #11141a;
  --paper: #efefeb;
  --paper-warm: #ded8ca;
  --white: #f7f8fa;
  --muted: #989da7;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(6, 8, 11, 0.18);
  --ice: #bfd5ff;
  --ice-bright: #eaf2ff;
  --violet: #8b6cff;
  --acid: #c8ff3d;
  --shell: min(1440px, calc(100vw - 96px));
  --header-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--ice);
  color: #050608;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 10% 20%, #fff 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 80% 40%, #fff 0 0.45px, transparent 0.75px),
    radial-gradient(circle at 40% 85%, #fff 0 0.4px, transparent 0.7px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: screen;
}

.section {
  position: relative;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.section-index span,
.section-index p,
.eyebrow,
.project__eyebrow,
.project__meta,
.project-disclaimer,
.visual-note,
.hero__topline,
.hero__footer,
.scroll-cue,
.contact__meta,
.site-footer,
.web-stage__label,
.web-stage__year {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index span {
  color: currentColor;
  font-size: 12px;
}

.section-index p {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--ice);
}

h2 {
  max-width: 980px;
  font-size: clamp(48px, 6.5vw, 104px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h2 em,
.hero__statement em {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid transparent;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 320ms var(--ease-out),
    background 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    transform 180ms ease;
}

.button--primary {
  min-width: 224px;
  color: var(--ink);
  background: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--ink);
  background: var(--ice);
}

.button--quiet {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid transparent;
  transition:
    background 400ms ease,
    border-color 400ms ease,
    backdrop-filter 400ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(1.1);
}

.brand__type {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand__type strong {
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.22em;
}

.brand__type small {
  color: #8490a7;
  font-size: 8px;
  letter-spacing: 0.48em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav > a {
  position: relative;
  color: #b7bac1;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: color 220ms ease;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--white) !important;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) 48px 50px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, rgba(100, 126, 176, 0.1), transparent 36%),
    linear-gradient(180deg, #020304 0%, #050608 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 9.1vw 100%, 100% 12.5vh;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 78%, transparent);
}

.contact__signal {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero__halo {
  position: absolute;
  z-index: -1;
  top: 9%;
  left: 50%;
  width: min(62vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 208, 255, 0.07), transparent 64%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.hero__logo-wrap {
  position: absolute;
  z-index: 1;
  top: 5.5%;
  left: 50%;
  width: min(80vw, 1420px);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate(-50%, -5%) scale(1.035);
  transition:
    opacity 1700ms var(--ease-out),
    transform 2200ms var(--ease-out),
    filter 1400ms ease;
}

.is-ready .hero__logo-wrap {
  opacity: 0.9;
  filter: drop-shadow(0 0 28px rgba(195, 218, 255, 0.09));
  transform: translate(-50%, 0) scale(1);
}

.hero__symbol {
  width: 100%;
  height: auto;
}

.hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -0.7%;
  line-height: 1;
  text-align: center;
}

.hero__wordmark strong {
  padding-left: 0.48em;
  color: #f6f7fa;
  font-size: clamp(34px, 4.2vw, 68px);
  font-weight: 280;
  letter-spacing: 0.48em;
  white-space: nowrap;
}

.hero__wordmark small {
  margin-top: 17px;
  padding-left: 0.68em;
  color: #8997b0;
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 420;
  letter-spacing: 0.68em;
}

.hero__topline {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-height) + 24px);
  right: 48px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(770px, 70vw);
  margin-bottom: 54px;
}

.hero__statement {
  margin-bottom: 24px;
  font-size: clamp(25px, 2.75vw, 46px);
  font-weight: 460;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero__statement em {
  color: var(--ice-bright);
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 30px;
  color: #a6aab3;
  font-size: clamp(14px, 1.18vw, 18px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-hero-item] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
}

.is-ready [data-hero-item] {
  opacity: 1;
  transform: translateY(0);
}

.is-ready .hero__topline {
  transition-delay: 280ms;
}

.is-ready .hero__statement {
  transition-delay: 480ms;
}

.is-ready .hero__intro {
  transition-delay: 620ms;
}

.is-ready .hero__actions {
  transition-delay: 740ms;
}

.is-ready .hero__footer {
  transition-delay: 860ms;
}

.hero__footer {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.38);
}

.hero__footer i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  display: flex;
  height: 96px;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.4s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(200%); }
}

.manifesto {
  overflow: hidden;
  padding: 150px 0 0;
  color: #0b0d10;
  background: var(--paper);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1.75fr;
  gap: 40px;
}

.manifesto .section-index p {
  color: #777b82;
}

.manifesto .eyebrow {
  color: #596476;
}

.manifesto h2 em {
  color: #777b82;
}

.manifesto__lead {
  max-width: 620px;
  margin-top: 52px;
  margin-left: 34%;
  color: #4f535a;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.6;
}

.signal-axis {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 130px;
  padding: 30px 48px;
  border-top: 1px solid var(--line-dark);
  color: #5b6068;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.signal-axis__line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(5, 6, 8, 0.17);
}

.signal-axis__line i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111820;
  box-shadow: 0 0 18px #223b61;
  animation: axis-pulse 5s var(--ease-in-out) infinite;
}

@keyframes axis-pulse {
  0%, 8% { left: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  92%, 100% { left: calc(100% - 5px); opacity: 0; }
}

.work {
  background: var(--ink);
}

.work__heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1.3fr 0.45fr;
  gap: 40px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 150px;
}

.work__heading h2 {
  font-size: clamp(48px, 5.4vw, 88px);
}

.work__note {
  max-width: 360px;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.project {
  position: relative;
  display: flex;
  min-height: 930px;
  overflow: hidden;
  align-items: center;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.project__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: center;
}

.project__grid--reverse {
  grid-template-columns: minmax(560px, 1.16fr) minmax(360px, 0.84fr);
}

.project__grid--reverse .project__copy {
  order: 2;
}

.project__copy {
  max-width: 570px;
}

.project__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.46);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status--live {
  color: #d6f8df;
}

.status--live i {
  box-shadow: 0 0 12px rgba(152, 255, 185, 0.8);
}

.status--build {
  color: var(--ice);
}

.status--build i {
  animation: status-breathe 2.6s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(191, 213, 255, 0.7);
}

@keyframes status-breathe {
  50% { opacity: 0.35; transform: scale(0.65); }
}

.project__eyebrow {
  margin-bottom: 17px;
  color: var(--ice);
}

.project h3 {
  margin-bottom: 38px;
  font-size: clamp(74px, 8vw, 132px);
  font-weight: 530;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.project__lead {
  margin-bottom: 22px;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.project__body {
  color: #9ca1ac;
  font-size: 15px;
  line-height: 1.75;
}

.project__facts {
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.project__facts li {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: #c7cad0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__facts li span {
  color: #606672;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 13px;
  font-weight: 630;
  letter-spacing: 0.04em;
  transition:
    gap 280ms var(--ease-out),
    color 280ms ease,
    border-color 280ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  gap: 38px;
  color: var(--ice);
  border-color: var(--ice);
}

.project-disclaimer {
  margin-top: 32px;
  color: #626a78;
}

.project--ihumans {
  background:
    radial-gradient(circle at 73% 50%, rgba(80, 45, 159, 0.25), transparent 33%),
    linear-gradient(140deg, #09070f, #06070b 54%, #080d16);
}

.project__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 25%, rgba(114, 63, 255, 0.13), transparent 18%),
    radial-gradient(circle at 60% 90%, rgba(40, 100, 210, 0.09), transparent 24%);
}

.phone-stage {
  position: relative;
  min-height: 730px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.phone-stage::before {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 67%;
  height: 86%;
  border: 1px solid rgba(168, 146, 255, 0.17);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 78, 246, 0.12), transparent 67%);
  box-shadow:
    0 0 100px rgba(81, 45, 176, 0.12),
    inset 0 0 100px rgba(81, 45, 176, 0.05);
  content: "";
  transform: translateX(-50%) rotateX(65deg);
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(33%, 265px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 38px;
  background: #050608;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
  transform-origin: center;
  transition: transform 800ms var(--ease-out);
}

.phone img {
  width: 100%;
  height: auto;
}

.phone--left {
  z-index: 1;
  transform: translate(-105%, -47%) rotate(-8deg) scale(0.89);
}

.phone--center {
  z-index: 3;
  transform: translate(-50%, -52%) translateZ(40px);
}

.phone--right {
  z-index: 2;
  transform: translate(5%, -46%) rotate(8deg) scale(0.9);
}

.phone-stage:hover .phone--left {
  transform: translate(-111%, -49%) rotate(-11deg) scale(0.9);
}

.phone-stage:hover .phone--center {
  transform: translate(-50%, -55%) translateZ(55px);
}

.phone-stage:hover .phone--right {
  transform: translate(11%, -48%) rotate(11deg) scale(0.91);
}

.visual-note {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.5);
}

.visual-note--one {
  top: 5%;
  right: 4%;
}

.visual-note--two {
  right: 0;
  bottom: 4%;
}

.project--myuta {
  color: #101111;
  background: var(--paper-warm);
}

.project--myuta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(9, 10, 9, 0.03) 1px, transparent 1px);
  background-size: 8vw 100%, 100% 140px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.project--myuta .project__meta {
  color: rgba(13, 15, 14, 0.55);
}

.project--myuta .status--live {
  color: #31573a;
}

.project--myuta .project__eyebrow {
  color: #775e25;
}

.project--myuta .project__body {
  color: #54534f;
}

.project--myuta .project__facts {
  border-color: var(--line-dark);
}

.project--myuta .project__facts li {
  border-color: var(--line-dark);
  color: #343431;
}

.project--myuta .project__facts li span {
  color: #8a857a;
}

.project-link--dark {
  color: #121311;
  border-color: rgba(5, 6, 6, 0.45);
}

.project-link--dark:hover,
.project-link--dark:focus-visible {
  color: #5f4c1f;
  border-color: #5f4c1f;
}

.web-stage {
  position: relative;
  padding: 10% 0 12%;
  perspective: 1800px;
}

.web-stage::before,
.radar-stage::before,
.reception-stage::before,
.portrait::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--spot-x, 70%) var(--spot-y, 30%),
    rgba(255, 255, 255, 0.14),
    transparent 45%
  );
  content: "";
  opacity: 0;
  transition: opacity 380ms ease;
}

.web-stage:hover::before,
.radar-stage:hover::before,
.reception-stage:hover::before,
.portrait:hover::before {
  opacity: 1;
}

.web-stage__frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(7, 8, 7, 0.42);
  border-radius: 8px;
  background: #0b0d0d;
  box-shadow: 0 55px 100px rgba(37, 29, 14, 0.25);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform 900ms var(--ease-out);
}

.web-stage:hover .web-stage__frame {
  transform: rotateY(-2deg) rotateX(0deg) translateY(-8px);
}

.web-stage__bar {
  display: grid;
  height: 46px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.57);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.web-stage__bar > span {
  display: flex;
  gap: 5px;
}

.web-stage__bar > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.web-stage__bar p {
  justify-self: center;
}

.web-stage__bar b {
  justify-self: end;
  color: #d5b369;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.web-stage__frame > img {
  width: 100%;
  height: auto;
}

.web-stage__label {
  position: absolute;
  bottom: 3%;
  left: -3%;
  color: rgba(13, 15, 14, 0.58);
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left bottom;
}

.web-stage__year {
  position: absolute;
  right: 0;
  bottom: 3%;
  color: rgba(13, 15, 14, 0.58);
}

.project--niche {
  background:
    radial-gradient(circle at 72% 52%, rgba(126, 169, 51, 0.08), transparent 35%),
    linear-gradient(145deg, #080b09, #07090b 60%, #080b0a);
}

.project--niche .project__eyebrow {
  color: var(--acid);
}

.project--niche .status--build {
  color: var(--acid);
}

.radar-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(216, 255, 122, 0.18);
  background:
    linear-gradient(90deg, rgba(200, 255, 61, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(200, 255, 61, 0.035) 1px, transparent 1px),
    rgba(5, 8, 6, 0.82);
  background-size: 44px 44px;
}

.radar-stage__header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200, 255, 61, 0.14);
}

.radar-stage__header img {
  width: 42px;
  height: 42px;
}

.radar-stage__header > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radar-stage__header strong {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.radar-stage__header span,
.radar-stage__footer,
.radar-stage__flow {
  color: rgba(235, 244, 226, 0.47);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.radar-stage__header > i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.9);
}

.radar-field {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(66%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 255, 61, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -48%);
}

.radar-field::before,
.radar-field::after {
  position: absolute;
  background: rgba(200, 255, 61, 0.11);
  content: "";
}

.radar-field::before {
  top: 50%;
  right: -15%;
  left: -15%;
  height: 1px;
}

.radar-field::after {
  top: -15%;
  bottom: -15%;
  left: 50%;
  width: 1px;
}

.radar-field__rings {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(200, 255, 61, 0.13);
  border-radius: 50%;
}

.radar-field__rings::before,
.radar-field__rings::after {
  position: absolute;
  border: 1px solid rgba(200, 255, 61, 0.12);
  border-radius: 50%;
  content: "";
}

.radar-field__rings::before {
  inset: 23%;
}

.radar-field__rings::after {
  inset: -24%;
}

.radar-field__sweep {
  position: absolute;
  inset: -1px 50% 50% -1px;
  overflow: hidden;
  transform-origin: 100% 100%;
  animation: radar-sweep 7s linear infinite;
}

.radar-field__sweep::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150%;
  height: 150%;
  background: conic-gradient(from 90deg at 100% 100%, transparent, rgba(200, 255, 61, 0.1));
  content: "";
}

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

.radar-dot,
.radar-pulse {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(200, 255, 61, 0.75);
}

.radar-dot--1 { top: 21%; left: 63%; }
.radar-dot--2 { top: 36%; left: 24%; }
.radar-dot--3 { top: 68%; left: 71%; }
.radar-dot--4 { top: 77%; left: 39%; }
.radar-dot--5 { top: 46%; left: 82%; }

.radar-pulse {
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  animation: radar-pulse 2.8s ease-out infinite;
}

@keyframes radar-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 255, 61, 0.35); }
  80%, 100% { box-shadow: 0 0 0 50px rgba(200, 255, 61, 0); }
}

.radar-stage__flow {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 78px;
  left: 34px;
  display: flex;
  align-items: center;
  color: rgba(236, 244, 228, 0.63);
}

.radar-stage__flow i {
  height: 1px;
  flex: 1;
  margin: 0 10px;
  background: rgba(200, 255, 61, 0.16);
}

.radar-stage__footer {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  justify-content: space-between;
}

.project--reception {
  color: #111318;
  background: var(--paper);
}

.project--reception .project__meta {
  color: rgba(13, 15, 20, 0.53);
}

.project--reception .status--build {
  color: #486185;
}

.project--reception .project__eyebrow {
  color: #4e6483;
}

.project--reception .project__body {
  color: #555a63;
}

.project--reception .project__facts {
  border-color: var(--line-dark);
}

.project--reception .project__facts li {
  border-color: var(--line-dark);
  color: #383c43;
}

.project--reception .project__facts li span,
.project--reception .project-disclaimer {
  color: #7b828c;
}

.reception-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(186, 211, 255, 0.18);
  color: var(--white);
  background:
    radial-gradient(circle at 24% 16%, rgba(130, 166, 230, 0.15), transparent 28%),
    linear-gradient(150deg, #0b0e13, #050608 66%);
  box-shadow: 0 48px 120px rgba(56, 70, 91, 0.2);
}

.reception-stage::after {
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 219, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(199, 219, 255, 0.025),
    0 0 0 90px rgba(199, 219, 255, 0.015);
  content: "";
}

.reception-stage__topline,
.reception-stage__footer,
.outcome-flow,
.message small {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reception-stage__topline {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.reception-stage__topline i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.13);
}

.conversation {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 86px;
}

.message {
  width: 78%;
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.message--visitor {
  align-self: flex-end;
}

.message--ai {
  border-color: rgba(191, 213, 255, 0.22);
  background: rgba(150, 185, 246, 0.075);
}

.message small {
  display: block;
  margin-bottom: 13px;
  color: #7f8ca1;
}

.message p {
  font-size: 16px;
  line-height: 1.55;
}

.outcome-flow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  margin-top: 76px;
  color: #758096;
}

.outcome-flow i {
  height: 1px;
  flex: 1;
  margin: 0 10px;
  background: rgba(191, 213, 255, 0.19);
}

.outcome-flow strong {
  color: var(--ice-bright);
  font-weight: 600;
}

.reception-stage__footer {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
}

.about {
  padding: 150px 0;
  color: #101216;
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) 1.15fr;
  gap: clamp(70px, 10vw, 170px);
  align-items: center;
}

.portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.78;
  margin: 0;
  background: #777b78;
}

.portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(2, 4, 5, 0.65)),
    linear-gradient(120deg, rgba(173, 203, 255, 0.12), transparent 45%);
  content: "";
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.35) contrast(1.07) brightness(0.86);
  transform: scale(1.01);
  transition:
    transform 1200ms var(--ease-out),
    filter 800ms ease;
}

.portrait:hover img {
  filter: saturate(0.5) contrast(1.04) brightness(0.9);
  transform: scale(1.035);
}

.portrait figcaption {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.about .eyebrow {
  color: #52637e;
}

.about h2 {
  margin-bottom: 46px;
  font-size: clamp(48px, 5.2vw, 82px);
}

.about h2 em {
  color: #7c8188;
}

.about__lead {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.about__copy > p:not(.eyebrow):not(.about__lead) {
  max-width: 660px;
  color: #5a5e65;
  font-size: 16px;
  line-height: 1.75;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 46px;
  padding-top: 23px;
  border-top: 1px solid var(--line-dark);
}

.capabilities span {
  position: relative;
  padding: 0 15px;
  color: #4f545c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.capabilities span:first-child {
  padding-left: 0;
}

.capabilities span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #7f848c;
  content: "";
}

.approach {
  padding: 150px 0;
  border-top: 1px solid var(--line);
  background: #07080a;
}

.approach__header {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1.75fr;
  gap: 40px;
  margin-bottom: 110px;
}

.approach h2 {
  font-size: clamp(48px, 5.5vw, 88px);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  min-height: 132px;
  grid-template-columns: 0.25fr 0.65fr 1.1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    padding 420ms var(--ease-out),
    background 420ms ease;
}

.process-list li:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.026);
}

.process-list li > span {
  color: #5c616b;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.process-list h3 {
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 480;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 600px;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  display: flex;
  min-height: 94svh;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(151, 184, 241, 0.1), transparent 32%),
    #030405;
}

.contact::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 229, 255, 0.14);
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(214, 228, 255, 0.018),
    0 0 0 105px rgba(214, 228, 255, 0.012),
    0 0 100px rgba(176, 205, 255, 0.05);
  content: "";
  transform: translate(-50%, -50%);
}

.contact__inner {
  position: relative;
  z-index: 3;
  padding: 150px 0 110px;
  text-align: center;
}

.contact h2 {
  max-width: 1130px;
  margin-inline: auto;
  font-size: clamp(58px, 7.6vw, 122px);
}

.contact h2 em {
  color: var(--ice-bright);
}

.contact__inner > p:not(.eyebrow) {
  max-width: 530px;
  margin: 45px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.contact__link {
  position: relative;
  display: grid;
  width: min(690px, 100%);
  min-height: 104px;
  grid-template-columns: 0.7fr 1fr auto;
  align-items: center;
  margin: 58px auto 0;
  padding: 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  text-align: left;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    background 350ms ease;
}

.contact__link::before {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 520ms var(--ease-out);
}

.contact__link > * {
  position: relative;
  z-index: 2;
}

.contact__link span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.contact__link strong {
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 480;
  letter-spacing: -0.02em;
}

.contact__link i {
  font-size: 26px;
  font-style: normal;
}

.contact__link:hover,
.contact__link:focus-visible {
  color: var(--ink);
  border-color: var(--white);
}

.contact__link:hover::before,
.contact__link:focus-visible::before {
  transform: scaleY(1);
  transform-origin: top;
}

.contact__link:hover span,
.contact__link:focus-visible span {
  color: #5b6068;
}

.contact__meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.site-footer__marquee {
  overflow: hidden;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer__marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.26);
  animation: marquee 30s linear infinite;
}

.site-footer__marquee span {
  font-size: 11px;
  letter-spacing: 0.18em;
}

.site-footer__marquee i {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

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

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__bottom p:nth-child(2) {
  justify-self: center;
}

.site-footer__bottom a {
  justify-self: end;
  transition: color 220ms ease;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  max-width: 340px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

.cursor-orbit {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  display: none;
  width: 30px;
  height: 30px;
  pointer-events: none;
  border: 1px solid rgba(221, 233, 255, 0.5);
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 260ms var(--ease-out),
    height 260ms var(--ease-out),
    opacity 180ms ease;
}

.cursor-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

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

.cursor-orbit.is-active {
  width: 52px;
  height: 52px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
}

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

@media (pointer: fine) {
  .cursor-orbit {
    display: block;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1040px);
  }

  .hero__content {
    width: min(680px, 72vw);
  }

  .hero__footer {
    display: none;
  }

  .work__heading {
    grid-template-columns: 0.25fr 1.3fr;
  }

  .work__note {
    grid-column: 2;
  }

  .project {
    min-height: auto;
  }

  .project__grid,
  .project__grid--reverse {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .project__grid--reverse .project__copy {
    order: 0;
  }

  .project__copy {
    max-width: 720px;
  }

  .project h3 {
    font-size: clamp(78px, 12vw, 124px);
  }

  .phone-stage,
  .radar-stage,
  .reception-stage,
  .web-stage {
    width: min(860px, 100%);
    margin-inline: auto;
  }

  .about__grid {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 72px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand__type strong {
    font-size: 10px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--white);
    background: rgba(5, 6, 8, 0.3);
  }

  .menu-toggle span {
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform 300ms var(--ease-out);
  }

  .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);
  }

  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 90px 24px 32px;
    background:
      radial-gradient(circle at 70% 20%, rgba(155, 185, 239, 0.12), transparent 30%),
      rgba(3, 4, 6, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 350ms ease,
      transform 500ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: clamp(28px, 8vw, 56px);
    font-weight: 480;
    letter-spacing: -0.04em;
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-contact {
    min-height: auto;
    margin-top: 32px;
    border: 0;
    padding: 16px 0 !important;
    color: var(--ice) !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
  }

  .hero {
    min-height: max(100svh, 760px);
    padding: calc(var(--header-height) + 30px) 20px 32px;
  }

  .hero__logo-wrap {
    top: 8%;
    width: 106vw;
  }

  .hero__topline {
    top: calc(var(--header-height) + 14px);
    right: 20px;
    left: 20px;
  }

  .hero__topline span:last-child {
    display: none;
  }

  .hero__content {
    width: 100%;
    margin-bottom: 48px;
  }

  .hero__statement {
    max-width: 620px;
    font-size: clamp(27px, 5.8vw, 40px);
  }

  .hero__intro {
    max-width: 560px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto,
  .about,
  .approach {
    padding: 100px 0;
  }

  .manifesto__grid,
  .approach__header {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .manifesto__lead {
    margin-top: 36px;
    margin-left: 0;
  }

  .signal-axis {
    margin-top: 80px;
    padding-inline: 20px;
  }

  .work__heading {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .work__note {
    grid-column: 1;
  }

  .project {
    padding: 100px 0;
  }

  .project__grid,
  .project__grid--reverse {
    gap: 65px;
  }

  .project__meta {
    margin-bottom: 42px;
  }

  .phone-stage {
    min-height: 630px;
  }

  .phone {
    width: min(37%, 250px);
  }

  .radar-stage,
  .reception-stage {
    min-height: 590px;
  }

  .about__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }

  .about h2 {
    font-size: clamp(41px, 7vw, 64px);
  }

  .process-list li {
    grid-template-columns: 0.2fr 0.8fr;
    gap: 20px;
    padding: 30px 0;
  }

  .process-list li p {
    grid-column: 2;
  }

  .contact__inner {
    padding: 120px 0 90px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  h2 {
    font-size: clamp(43px, 13.5vw, 66px);
  }

  .section-index {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .hero {
    min-height: max(100svh, 780px);
    padding-inline: 16px;
  }

  .hero__logo-wrap {
    top: 13%;
    width: 112vw;
  }

  .hero__wordmark strong {
    padding-left: 0.28em;
    font-size: clamp(27px, 8.3vw, 34px);
    letter-spacing: 0.28em;
  }

  .hero__wordmark small {
    margin-top: 10px;
    padding-left: 0.56em;
    font-size: 8px;
    letter-spacing: 0.56em;
  }

  .hero__halo {
    top: 13%;
    width: 92vw;
  }

  .hero__topline {
    right: 16px;
    left: 16px;
  }

  .hero__content {
    margin-bottom: 12px;
  }

  .hero__statement {
    margin-bottom: 18px;
    font-size: clamp(25px, 7.7vw, 34px);
  }

  .hero__intro {
    margin-bottom: 23px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .signal-axis {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .signal-axis > span:last-child {
    text-align: right;
  }

  .work__heading h2,
  .approach h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .project {
    padding: 88px 0;
  }

  .project__meta {
    align-items: flex-start;
    font-size: 8px;
  }

  .project h3 {
    font-size: clamp(66px, 21vw, 96px);
  }

  .project__lead {
    font-size: 23px;
  }

  .phone-stage {
    min-height: 500px;
    margin-inline: -8px;
  }

  .phone {
    width: 43%;
    border-radius: 25px;
  }

  .phone--left {
    transform: translate(-110%, -45%) rotate(-8deg) scale(0.84);
  }

  .phone--center {
    transform: translate(-50%, -51%);
  }

  .phone--right {
    transform: translate(10%, -44%) rotate(8deg) scale(0.84);
  }

  .phone-stage:hover .phone--left {
    transform: translate(-110%, -45%) rotate(-8deg) scale(0.84);
  }

  .phone-stage:hover .phone--center {
    transform: translate(-50%, -51%);
  }

  .phone-stage:hover .phone--right {
    transform: translate(10%, -44%) rotate(8deg) scale(0.84);
  }

  .visual-note--one {
    top: 0;
  }

  .visual-note--two {
    bottom: 0;
  }

  .web-stage {
    padding-top: 8%;
  }

  .web-stage__frame,
  .web-stage:hover .web-stage__frame {
    transform: none;
  }

  .web-stage__bar {
    height: 36px;
    padding-inline: 10px;
  }

  .web-stage__label {
    display: none;
  }

  .radar-stage,
  .reception-stage {
    min-height: 500px;
    padding: 20px;
  }

  .radar-field {
    top: 48%;
    width: 74%;
  }

  .radar-stage__flow {
    right: 20px;
    bottom: 66px;
    left: 20px;
    font-size: 6px;
  }

  .radar-stage__footer,
  .reception-stage__footer {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 20px;
    font-size: 6px;
  }

  .conversation {
    margin-top: 56px;
  }

  .message {
    width: 90%;
    padding: 16px;
  }

  .message p {
    font-size: 14px;
  }

  .outcome-flow {
    margin-top: 50px;
    font-size: 6px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .portrait {
    width: calc(100% + 32px);
    aspect-ratio: 0.86;
    margin-left: -16px;
  }

  .portrait img {
    object-position: 50% 34%;
  }

  .about h2 {
    font-size: clamp(43px, 12.7vw, 62px);
  }

  .capabilities span {
    padding: 0 10px;
    font-size: 8px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .process-list li:hover {
    padding-inline: 0;
  }

  .contact {
    min-height: 800px;
  }

  .contact::after {
    width: 88vw;
  }

  .contact h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .contact__inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact__link {
    min-height: 94px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .contact__link span {
    display: none;
  }

  .contact__meta {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-footer__bottom p:nth-child(2) {
    justify-self: end;
  }

  .site-footer__bottom a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-height: 740px) and (min-width: 861px) {
  .hero__logo-wrap {
    top: 2%;
    width: min(68vw, 1160px);
  }

  .hero__content {
    margin-bottom: 24px;
  }

  .hero__statement {
    margin-bottom: 17px;
    font-size: 29px;
  }

  .hero__intro {
    margin-bottom: 18px;
  }
}

@media
  (min-width: 1200px) and
  (min-aspect-ratio: 8 / 5) and
  (min-height: 741px) and
  (max-height: 1150px) {
  .hero__logo-wrap {
    top: 3%;
    width: min(58vw, clamp(720px, calc(180svh - 730px), 1160px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .contact__signal,
  .cursor-orbit {
    display: none;
  }

  .hero__logo-wrap,
  [data-hero-item],
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
