:root {
  --ink: #141413;
  --orange: #e16332;
  --grey: #6d6d6d;
  --white: #ffffff;
  --paper: #f1f0ec;
  --paper-deep: #e1ded6;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(20, 20, 19, 0.14);
  --shadow: 0 24px 80px rgba(20, 20, 19, 0.22);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--orange);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 220ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-is-open {
  min-height: 70px;
  background: rgba(20, 20, 19, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 44;
}

.brand-lockup {
  display: grid;
  place-items: center;
  width: 190px;
  height: 56px;
  padding: 0;
  background: transparent;
}

.brand-lockup img {
  width: 184px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a,
.footer-nav a,
.contact-lines a {
  transition: color 220ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.contact-lines a:hover {
  color: var(--orange);
}

.header-cta,
.button,
.filter-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--orange);
  color: var(--white);
}

.header-cta:hover,
.button-primary:hover,
.filter-button.is-active:hover {
  background: var(--white);
  color: var(--ink);
}

.button {
  padding: 0 20px;
}

.button:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-ghost {
  border-color: currentColor;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.nav-toggle {
  position: relative;
  z-index: 44;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms ease, top 220ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 25px;
}

body.nav-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.section-wrap {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
  padding: 86px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.eyebrow,
.service-index,
.founder-role,
.truth-item span,
.screen-date {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.95;
}

h2 {
  margin-bottom: 24px;
  font-size: 3.1rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  font-weight: 900;
}

p {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding-top: var(--header-height);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 19, 0.92), rgba(20, 20, 19, 0.66) 54%, rgba(20, 20, 19, 0.88)),
    linear-gradient(180deg, rgba(20, 20, 19, 0.16), rgba(20, 20, 19, 0.72));
  z-index: 1;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  opacity: 0.78;
}

.screen-ant {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: clamp(54px, 6.4vw, 96px);
  height: clamp(88px, 10.6vw, 148px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.screen-ant.is-active {
  opacity: 0.98;
}

.screen-ant.is-panicked {
  opacity: 1;
}

.ant-ground-shadow {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 76%;
  height: 92%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0) 75%);
  transform: translate(-50%, -50%) rotate(2deg);
  filter: blur(2px);
}

.ant-rig {
  position: absolute;
  inset: 0;
  transform-origin: center;
  animation: antBodySway 520ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

.screen-ant.is-active:not(.is-resting) .ant-rig {
  animation-play-state: running;
}

.screen-ant.is-panicked .ant-rig {
  animation-duration: 210ms;
}

.ant-body,
.ant-leg,
.ant-antenna,
.ant-highlight {
  position: absolute;
  display: block;
}

.ant-body {
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  border: 1px solid rgba(255, 139, 92, 0.36);
  box-shadow:
    inset 0 -5px 0 rgba(124, 48, 24, 0.2),
    inset 3px 4px 0 rgba(255, 255, 255, 0.1),
    0 0 10px rgba(225, 99, 50, 0.18);
}

.ant-head {
  top: 4%;
  width: 50%;
  height: 28%;
  border-radius: 48% 48% 44% 44%;
}

.ant-thorax {
  top: 31%;
  width: 44%;
  height: 28%;
  border-radius: 48%;
}

.ant-abdomen {
  top: 55%;
  width: 62%;
  height: 40%;
  border-radius: 48% 48% 54% 54%;
  background:
    linear-gradient(180deg, rgba(255, 139, 92, 0.28), rgba(255, 139, 92, 0) 34%),
    var(--orange);
}

.ant-highlight {
  display: none;
}

.highlight-head {
  top: 11%;
}

.highlight-abdomen {
  top: 64%;
  width: 12%;
}

.ant-leg,
.ant-antenna {
  width: 46%;
  height: 3px;
  background: linear-gradient(90deg, #e16332, #b84624);
  border-radius: 999px;
  transform-origin: 0 50%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  animation-play-state: paused;
}

.ant-leg::after,
.ant-antenna::after {
  content: "";
  position: absolute;
  right: -32%;
  top: 0;
  width: 42%;
  height: 3px;
  border-radius: inherit;
  background: inherit;
  transform-origin: 0 50%;
  transform: rotate(var(--joint-angle, 24deg));
}

.leg-front-left {
  left: 52%;
  top: 31%;
  --leg-rest: 30deg;
  --leg-step: 56deg;
  transform: rotate(var(--leg-rest));
  animation: legA 520ms ease-in-out infinite;
}

.leg-front-right {
  right: 52%;
  top: 31%;
  transform-origin: 100% 50%;
  --leg-rest: 150deg;
  --leg-step: 124deg;
  transform: rotate(var(--leg-rest));
  animation: legB 520ms ease-in-out infinite;
}

.leg-mid-left {
  left: 54%;
  top: 47%;
  --leg-rest: 8deg;
  --leg-step: -18deg;
  transform: rotate(var(--leg-rest));
  animation: legB 520ms ease-in-out infinite;
}

.leg-mid-right {
  right: 54%;
  top: 47%;
  transform-origin: 100% 50%;
  --leg-rest: 172deg;
  --leg-step: 198deg;
  transform: rotate(var(--leg-rest));
  animation: legA 520ms ease-in-out infinite;
}

.leg-back-left {
  left: 53%;
  top: 66%;
  --leg-rest: -23deg;
  --leg-step: -49deg;
  transform: rotate(var(--leg-rest));
  animation: legA 520ms ease-in-out infinite;
}

.leg-back-right {
  right: 53%;
  top: 66%;
  transform-origin: 100% 50%;
  --leg-rest: 203deg;
  --leg-step: 229deg;
  transform: rotate(var(--leg-rest));
  animation: legB 520ms ease-in-out infinite;
}

.ant-antenna {
  left: 49%;
  top: 7%;
  width: 42%;
  background: linear-gradient(90deg, #e16332, #b84624);
  animation: antennaFlick 820ms ease-in-out infinite;
  animation-play-state: paused;
}

.antenna-left {
  transform: rotate(-120deg);
}

.antenna-right {
  left: auto;
  right: 49%;
  transform-origin: 100% 50%;
  transform: rotate(-60deg);
  animation-delay: 210ms;
}

.screen-ant.is-active:not(.is-resting) .ant-leg,
.screen-ant.is-active:not(.is-resting) .ant-antenna {
  animation-play-state: running;
}

.screen-ant.is-resting .ant-leg,
.screen-ant.is-resting .ant-antenna {
  animation-play-state: paused;
}

.screen-ant.is-panicked .ant-leg {
  animation-duration: 190ms;
}

.screen-ant.is-panicked .ant-antenna {
  animation-duration: 260ms;
}

.screen-ant {
  width: clamp(54px, 5.8vw, 92px);
  height: clamp(86px, 9.2vw, 146px);
}

.screen-ant .ant-ground-shadow {
  left: 50%;
  top: 55%;
  width: 78%;
  height: 88%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06) 56%, rgba(0, 0, 0, 0) 76%);
  filter: blur(1.6px);
}

.top-ant-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 8px rgba(225, 99, 50, 0.16));
  transform-origin: center;
  animation: topAntBody 520ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

.screen-ant.is-active:not(.is-resting) .top-ant-svg {
  animation-play-state: running;
}

.screen-ant.is-panicked .top-ant-svg {
  animation-duration: 190ms;
}

.top-ant-body {
  fill: var(--orange);
}

.top-ant-body ellipse {
  stroke: rgba(255, 139, 92, 0.32);
  stroke-width: 1;
}

.top-ant-leg,
.top-ant-antenna {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  animation-play-state: paused;
}

.top-ant-antenna {
  stroke-width: 5;
}

.screen-ant.is-active:not(.is-resting) .top-ant-leg,
.screen-ant.is-active:not(.is-resting) .top-ant-antenna {
  animation-play-state: running;
}

.screen-ant.is-resting .top-ant-leg,
.screen-ant.is-resting .top-ant-antenna {
  animation-play-state: paused;
}

.leg-svg-front-left,
.leg-svg-mid-right,
.leg-svg-back-left {
  animation: topLegA 520ms ease-in-out infinite;
}

.leg-svg-front-right,
.leg-svg-mid-left,
.leg-svg-back-right {
  animation: topLegB 520ms ease-in-out infinite;
}

.antenna-svg-left {
  animation: topAntennaLeft 820ms ease-in-out infinite;
}

.antenna-svg-right {
  animation: topAntennaRight 820ms ease-in-out infinite;
  animation-delay: 160ms;
}

.screen-ant.is-panicked .top-ant-leg {
  animation-duration: 180ms;
}

.screen-ant.is-panicked .top-ant-antenna {
  animation-duration: 240ms;
}

.hero-mark {
  position: absolute;
  right: 4%;
  top: 19%;
  width: min(340px, 48vw);
  opacity: 0.12;
  z-index: 1;
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 58px;
}

.hero-logo-title {
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1;
}

.hero-logo-title img {
  width: 100%;
  height: auto;
}

.hero-claim {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-rail span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-dark);
}

.hero-rail span:nth-child(2n) {
  border-right: 0;
}

.manifesto-grid,
.studio-layout,
.platform-layout,
.apparel-layout,
.contact-layout {
  display: grid;
  gap: 42px;
}

.manifesto-copy {
  max-width: 900px;
}

.manifesto-copy h2 {
  font-size: 3.45rem;
}

.manifesto-copy p {
  max-width: 760px;
  color: rgba(20, 20, 19, 0.74);
  font-size: 1.28rem;
}

.manifesto-copy strong {
  color: var(--ink);
  font-weight: 900;
}

.clients .section-wrap {
  padding-top: 86px;
  padding-bottom: 86px;
}

.client-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.client-proof span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--line-dark);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.client-proof span:last-child {
  border-bottom: 0;
}

.client-proof strong {
  color: var(--orange);
  font-family: "Archivo", sans-serif;
  font-size: 1.75rem;
  line-height: 0.95;
  text-transform: none;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), rgba(20, 20, 19, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), rgba(20, 20, 19, 0));
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: clientMarquee 42s linear infinite;
}

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

.logo-set {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  padding: 24px clamp(18px, 4vw, 46px);
}

.client-logo {
  width: clamp(148px, 18vw, 250px);
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  opacity: 0.84;
  transition: opacity 220ms ease, transform 220ms ease;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.client-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.split-heading {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: 32px;
}

.split-heading > p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
}

.reviews .split-heading > p,
.section-light .split-heading > p,
.section-paper .split-heading > p {
  color: rgba(20, 20, 19, 0.62);
}

.service-grid,
.work-grid,
.review-grid,
.truth-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card,
.founder-card,
.review-card,
.truth-item {
  border-radius: var(--radius);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.service-card h3 {
  max-width: 340px;
}

.service-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  color: rgba(20, 20, 19, 0.66);
}

.service-line {
  color: var(--orange);
  font-weight: 900;
}

.works .section-wrap {
  padding-top: 96px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 0 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border-color: var(--line-dark);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.filter-button.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.work-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, transform 220ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 99, 50, 0.72);
}

.work-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  display: block;
}

.work-visual::before {
  inset: 22px;
  border: 1px solid rgba(20, 20, 19, 0.18);
  border-radius: var(--radius);
}

.work-visual::after {
  width: 88px;
  height: 88px;
  right: 26px;
  bottom: 26px;
  background: var(--orange);
  border-radius: var(--radius);
}

.work-visual span {
  position: absolute;
  left: 26px;
  bottom: 30px;
  z-index: 1;
  max-width: 230px;
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.92;
}

.work-visual[data-tone="dark"] {
  background: #1f1f1d;
}

.work-visual[data-tone="dark"]::before {
  border-color: rgba(255, 255, 255, 0.18);
}

.work-visual[data-tone="dark"] span {
  color: var(--white);
}

.work-visual[data-tone="orange"] {
  background: var(--orange);
}

.work-visual[data-tone="orange"]::after {
  background: var(--ink);
}

.work-visual[data-tone="orange"] span {
  color: var(--white);
}

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

.work-visual.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 320ms ease;
}

.work-card:hover .work-visual.has-image img {
  transform: scale(1.04);
}

.work-visual.has-image::before {
  inset: 0;
  z-index: 1;
  background: rgba(20, 20, 19, 0.2);
  border: 0;
  border-radius: 0;
}

.work-visual.has-image::after {
  display: none;
}

.work-visual.has-image span {
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 8px 10px;
  background: rgba(20, 20, 19, 0.78);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.work-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.work-category {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-content h3 {
  color: var(--white);
}

.work-content p {
  margin-top: auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.studio-copy p,
.platform-copy p,
.apparel-copy p,
.contact-copy p {
  max-width: 640px;
  color: rgba(20, 20, 19, 0.7);
  font-size: 1.1rem;
}

.apparel-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.founder-list {
  display: grid;
  gap: 14px;
}

.founder-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.founder-card p {
  margin-bottom: 0;
  color: rgba(20, 20, 19, 0.64);
}

.team-note {
  margin: 10px 0 0;
  color: rgba(20, 20, 19, 0.66);
  font-weight: 800;
}

.platform-layout {
  align-items: center;
}

.platform-copy .button {
  margin-top: 14px;
}

.platform-screen {
  overflow: hidden;
  border: 1px solid rgba(20, 20, 19, 0.2);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.screen-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--grey);
}

.screen-top span:first-child {
  background: var(--orange);
}

.screen-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.screen-kpi,
.screen-row {
  background: var(--ink);
}

.screen-kpi {
  min-height: 128px;
  padding: 20px;
}

.screen-kpi span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.screen-kpi strong {
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
}

.screen-row {
  grid-column: 1 / -1;
  min-height: 64px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--white);
}

.screen-row strong {
  color: var(--orange);
}

.apparel-layout {
  align-items: center;
}

.apparel-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.apparel-board span {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.apparel-board span:first-child,
.apparel-board span:last-child {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

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

.truth-item {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.truth-item span {
  margin: 0;
}

.truth-item h3 {
  margin-bottom: 0;
}

.truth-item p {
  margin-bottom: 0;
  color: rgba(20, 20, 19, 0.64);
}

.review-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.review-card blockquote {
  margin: 0 0 26px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.review-card footer {
  margin-top: auto;
  color: rgba(20, 20, 19, 0.62);
}

.contact-layout {
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-link {
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.1;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social-button {
  min-height: 46px;
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
}

.contact-social-button svg {
  color: currentColor;
}

.contact-social-button:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.contact-lines .contact-social-button:hover {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: rgba(255, 255, 255, 0.76);
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

.field-error {
  display: none;
  margin: 0;
  color: var(--orange);
  font-size: 0.88rem;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--orange);
}

.form-row.has-error .field-error {
  display: block;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background: #0b0b0a;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line-dark);
}

.footer-main,
.footer-legal {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.footer-main {
  display: grid;
  gap: 28px;
  padding: 42px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-nav {
  display: grid;
  gap: 8px;
  font-family: "Spline Sans Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

address {
  font-style: normal;
}

address a {
  color: var(--white);
}

.footer-legal {
  padding: 20px 0 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.88rem;
}

.footer-legal p {
  margin: 0 0 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

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

@keyframes antBodySway {
  from {
    transform: translateY(-1px) rotate(-0.8deg);
  }

  to {
    transform: translateY(1px) rotate(0.8deg);
  }
}

@keyframes legA {
  0%,
  100% {
    transform: rotate(var(--leg-rest));
  }

  48% {
    transform: rotate(var(--leg-step));
  }

  68% {
    transform: rotate(calc(var(--leg-rest) - 7deg));
  }
}

@keyframes legB {
  0%,
  100% {
    transform: rotate(var(--leg-step));
  }

  48% {
    transform: rotate(var(--leg-rest));
  }

  68% {
    transform: rotate(calc(var(--leg-step) + 7deg));
  }
}

@keyframes antennaFlick {
  0%,
  100% {
    filter: brightness(1);
  }

  42% {
    filter: brightness(1.35);
    translate: 0 -1px;
  }
}

@keyframes topAntBody {
  from {
    transform: translateY(-0.5px) rotate(-0.45deg);
  }

  to {
    transform: translateY(0.5px) rotate(0.45deg);
  }
}

@keyframes topLegA {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }

  48% {
    transform: rotate(9deg) translateY(-1px);
  }
}

@keyframes topLegB {
  0%,
  100% {
    transform: rotate(8deg) translateY(-1px);
  }

  48% {
    transform: rotate(-8deg) translateY(0);
  }
}

@keyframes topAntennaLeft {
  0%,
  100% {
    transform: rotate(0deg);
  }

  44% {
    transform: rotate(-5deg);
  }
}

@keyframes topAntennaRight {
  0%,
  100% {
    transform: rotate(0deg);
  }

  44% {
    transform: rotate(5deg);
  }
}

@media (min-width: 640px) {
  .hero-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-rail span:nth-child(2n) {
    border-right: 1px solid var(--line-dark);
  }

  .hero-rail span:nth-child(3n) {
    border-right: 0;
  }

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

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

  .client-proof span {
    padding: 18px;
    border-right: 1px solid var(--line-dark);
  }

  .client-proof span:nth-child(2n) {
    border-right: 0;
  }

  .client-proof span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

@media (min-width: 820px) {
  h2 {
    font-size: 4.65rem;
  }

  .hero-logo-title {
    max-width: 610px;
  }

  .hero-claim {
    font-size: 2.8rem;
  }

  .hero-copy {
    font-size: 1.38rem;
  }

  .section-wrap {
    width: min(1160px, calc(100% - 56px));
    padding: 112px 0;
  }

  .manifesto-grid {
    grid-template-columns: 210px 1fr;
  }

  .split-heading,
  .studio-layout,
  .platform-layout,
  .apparel-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

  .studio-layout,
  .platform-layout,
  .apparel-layout,
  .contact-layout {
    gap: 72px;
  }

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

  .truth-item {
    grid-template-columns: 80px minmax(240px, 0.8fr) 1fr;
    align-items: baseline;
  }
}

@media (min-width: 1040px) {
  .hero-logo-title {
    max-width: 660px;
  }

  .hero-rail {
    grid-template-columns: repeat(6, 1fr);
  }

  .hero-rail span,
  .hero-rail span:nth-child(2n),
  .hero-rail span:nth-child(3n) {
    border-right: 1px solid var(--line-dark);
  }

  .hero-rail span:last-child {
    border-right: 0;
  }

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

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

  .client-proof span,
  .client-proof span:nth-child(2n) {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .client-proof span:last-child {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .brand-lockup {
    width: 150px;
    height: 44px;
  }

  .brand-lockup img {
    width: 146px;
  }

  .hero-logo-title {
    max-width: 100%;
  }

  .hero-claim {
    font-size: 1.75rem;
  }

  h2,
  .manifesto-copy h2 {
    font-size: 2.55rem;
  }

  .section-wrap {
    padding: 72px 0;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 38px;
  }

  .logo-set {
    gap: 28px;
    padding: 18px;
  }

  .client-logo {
    width: 138px;
    height: 72px;
  }

  .client-logo img {
    max-height: 54px;
  }

  .screen-body {
    grid-template-columns: 1fr;
  }

  .screen-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .apparel-board {
    grid-template-columns: 1fr;
  }

  .apparel-board span {
    min-height: 82px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none !important;
  }

  .logo-set {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-set[aria-hidden="true"] {
    display: none;
  }
}
