:root {
  --ink: #0a0a0a;
  --paper: #f3f1eb;
  --white: #fff;
  --muted: #75746e;
  --line: rgba(10, 10, 10, .16);
  --lime: #c7ff3d;
  --max: 1380px;
  --pad: clamp(22px, 4vw, 64px);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .035;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E")
}

.section-pad {
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: 1500px;
  margin: auto
}

.nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  transition: .35s var(--ease);
  mix-blend-mode: normal
}

.nav.scrolled {
  background: rgba(243, 241, 235, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 17px;
  width: max-content
}

.brand-mark {
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px
}

.desktop-nav a,
.nav-cta {
  transition: .25s
}

.desktop-nav a:hover {
  opacity: .5
}

.nav-cta {
  justify-self: end;
  border: 1px solid var(--ink);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper)
}

.menu-toggle {
  display: none;
  border: 0;
  background: none
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  gap: 20px;
  transform: translateY(-100%);
  transition: .55s var(--ease)
}

.mobile-menu a {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.05em
}

.menu-open .mobile-menu {
  transform: translateY(0)
}

.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 65px;
  display: flex;
  flex-direction: column
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  flex: 1
}

.hero-copy {
  width: min(48%, 560px);
  margin-left: auto;
  padding: 0 0 70px
}

.eyebrow,
.section-kicker,
.mono {
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em
}

.hero h1 {
  font-size: clamp(65px, 8.8vw, 136px);
  line-height: .83;
  letter-spacing: -.085em;
  margin: 24px 0 08px;
  font-weight: 800;
  width: min(78%, 980px);
  margin-left: 0;
}

.hero h1 em,
.intro h2 em,
.section-head h2 em,
.cap-head h2 em,
.audience h2 em,
.case h2 em,
.process-head h2 em,
.studio h2 em,
.insights h2 em,
.cta h2 em {
  font-style: normal;
  color: #77766f
}

.hero-text {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  max-width: 510px;
  color: #4e4d48;
  margin: 0 0 18px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
  flex-wrap: wrap
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 15px 19px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 12px;
  cursor: pointer;
  transition: .35s var(--ease)
}

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

.button-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px #0002
}

.button-outline {
  background: transparent
}

.button-outline:hover {
  background: var(--ink);
  color: var(--paper)
}

.text-link {
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px
}

.text-link span {
  display: inline-block;
  margin-left: 14px;
  transition: .3s
}

.text-link:hover span {
  transform: translate(4px, -4px)
}

.hero-art {
  height: min(690px, 68vw);
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #121212;
  border-radius: 4px
}

.art-orbit {
  position: absolute;
  border: 1px solid #ffffff22;
  border-radius: 50%;
  transform: rotate(-20deg)
}

.orbit-a {
  width: 78%;
  height: 55%;
  left: 7%;
  top: 23%
}

.orbit-b {
  width: 52%;
  height: 75%;
  left: 24%;
  top: 12%;
  transform: rotate(52deg)
}

.art-panel {
  position: absolute;
  background: #eae8e0;
  color: #0a0a0a;
  box-shadow: 0 30px 70px #0006
}

.panel-main {
  width: 68%;
  height: 63%;
  left: 16%;
  top: 18%;
  padding: 20px;
  transform: rotate(-4deg)
}

.panel-top {
  font: 9px "DM Mono";
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #0002;
  padding-bottom: 10px
}

.panel-title {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .88;
  letter-spacing: -.07em;
  margin-top: 70px
}

.panel-title strong {
  font-weight: 800
}

.mini-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-top: 1px solid #0002;
  padding-top: 15px
}

.mini-chart {
  height: 60px;
  display: flex;
  align-items: end;
  gap: 5px
}

.mini-chart i {
  display: block;
  width: 8px;
  background: #0a0a0a
}

.mini-chart i:nth-child(1) {
  height: 25%
}

.mini-chart i:nth-child(2) {
  height: 50%
}

.mini-chart i:nth-child(3) {
  height: 35%
}

.mini-chart i:nth-child(4) {
  height: 70%
}

.mini-chart i:nth-child(5) {
  height: 48%
}

.mini-chart i:nth-child(6) {
  height: 90%
}

.mini-chart i:nth-child(7) {
  height: 78%
}

.mini-stat {
  text-align: right
}

.mini-stat small {
  display: block;
  font: 9px "DM Mono";
  margin-bottom: 5px
}

.mini-stat b {
  font-size: 28px
}

.panel-float {
  width: 190px;
  padding: 17px;
  right: 3%;
  bottom: 13%;
  transform: rotate(7deg);
  display: grid;
  gap: 30px
}

.panel-float span {
  font: 10px "DM Mono"
}

.panel-float b {
  font-size: 20px;
  line-height: .95;
  letter-spacing: -.05em
}

.panel-float small {
  font-size: 10px
}

.art-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  right: 12%;
  top: 13%;
  box-shadow: 0 0 35px var(--lime)
}

.scroll-cue {
  font: 10px "DM Mono";
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase
}

.scroll-cue span {
  width: 35px;
  height: 1px;
  background: var(--ink)
}

.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap
}

.ticker-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font: 11px "DM Mono"
}

.ticker b {
  color: var(--lime);
  font-weight: 400
}

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

.intro {
  padding-top: 170px;
  padding-bottom: 170px
}

.intro-content {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 10%;
  margin-top: 55px
}

.intro h2,
.section-head h2,
.cap-head h2,
.audience h2,
.case h2,
.process-head h2,
.studio h2,
.insights h2,
.cta h2 {
  font-size: clamp(54px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -.075em;
  margin: 0
}

.intro-copy {
  padding-top: 15px
}

.intro-copy p {
  font-size: 19px;
  line-height: 1.5;
  color: #55534e;
  margin: 0 0 35px
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 45px
}

.section-head p {
  max-width: 360px;
  color: #55534e;
  line-height: 1.5;
  font-size: 15px
}

.work {
  padding-top: 80px;
  padding-bottom: 150px
}

.projects {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px 28px
}

.project-visual {
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 2px
}

.project-dark {
  color: var(--paper)
}

.project-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 20px;
  font: 10px "DM Mono";
  letter-spacing: .06em
}

.project-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  font: 10px "DM Mono";
  text-transform: uppercase
}

.card-cover,
.visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.project-info {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.project-info span {
  font: 10px "DM Mono"
}

.project-info h3 {
  font-size: 40px;
  letter-spacing: -.06em;
  margin: 0
}

.project-info p {
  grid-column: 2;
  margin: 3px 0 0;
  color: #6c6a64;
  font-size: 12px
}

.pakid {
  background: #151515
}

.phone-ui {
  position: absolute;
  width: 250px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(7deg);
  background: #f2f0e8;
  color: #111;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 40px 80px #0008
}

.ui-bar {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700
}

.ui-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c7ff3d, #eee);
  border-radius: 50%;
  margin: 45px 0 15px
}

.ui-lines {
  display: grid;
  gap: 6px
}

.ui-lines i {
  height: 5px;
  background: #1111;
  border-radius: 10px
}

.ui-lines i:first-child {
  width: 80%
}

.ui-lines i:nth-child(2) {
  width: 60%
}

.ui-lines i:nth-child(3) {
  width: 40%
}

.ui-card {
  background: #111;
  color: #eee;
  border-radius: 16px;
  padding: 20px;
  margin-top: 35px
}

.ui-card small {
  font: 9px "DM Mono";
  color: #aaa
}

.ui-card strong {
  display: block;
  font-size: 22px;
  margin: 7px 0
}

.ui-card span {
  font-size: 9px;
  color: #aaa
}

.ui-nav {
  position: absolute;
  bottom: 18px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 14px
}

.reach {
  background: var(--lime);
  color: #0a0a0a
}

.reach-word {
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 900;
  letter-spacing: -.1em;
  position: absolute;
  left: 5%;
  top: 17%;
  line-height: .75
}

.reach-ui {
  position: absolute;
  right: 8%;
  bottom: 13%;
  background: #111;
  color: #f3f1eb;
  width: 260px;
  padding: 22px;
  box-shadow: 0 30px 60px #0003
}

.reach-ui small {
  font: 9px "DM Mono";
  display: block;
  color: #aaa
}

.reach-ui strong {
  display: block;
  font-size: 48px;
  letter-spacing: -.07em;
  margin: 10px 0
}

.progress {
  height: 5px;
  background: #ffffff22
}

.progress i {
  display: block;
  width: 84%;
  height: 100%;
  background: var(--lime)
}

.metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 18px
}

.metric-row b {
  font-weight: 500
}

.lms {
  background: #161616
}

.lms-window {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  bottom: 14%;
  display: grid;
  grid-template-columns: 28% 72%;
  background: #242424;
  border: 1px solid #fff1
}

.lms-window aside {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 20px;
  border-right: 1px solid #fff1
}

.lms-window aside b {
  font-size: 20px
}

.lms-window aside span {
  font-size: 9px;
  color: #aaa
}

.lms-main {
  padding: 25px
}

.lms-main small {
  font: 8px "DM Mono";
  color: #aaa
}

.lms-main h4 {
  font-size: 30px;
  margin: 10px 0 22px;
  letter-spacing: -.05em
}

.lms-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.lms-cards div {
  padding: 13px;
  background: #fff;
  color: #111
}

.lms-cards b {
  display: block;
  font-size: 22px
}

.lms-cards span {
  font-size: 8px;
  color: #666
}

.lms-lines {
  display: grid;
  gap: 8px;
  margin-top: 22px
}

.lms-lines i {
  height: 7px;
  background: #fff1
}

.lms-lines i:nth-child(1) {
  width: 90%
}

.lms-lines i:nth-child(2) {
  width: 72%
}

.lms-lines i:nth-child(3) {
  width: 82%
}

.lms-lines i:nth-child(4) {
  width: 62%
}

.zap {
  background: #e9e5dc
}

.qr-card {
  position: absolute;
  left: 12%;
  top: 18%;
  background: #111;
  color: #eee;
  width: 260px;
  height: 330px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: 20px 30px 60px #0002;
  transform: rotate(-7deg)
}

.fake-qr {
  width: 145px;
  height: 145px;
  position: absolute;
  top: 25px;
  left: 25px;
  background: repeating-linear-gradient(45deg, #fff 0 5px, #111 5px 10px), repeating-linear-gradient(-45deg, transparent 0 4px, #fff 4px 7px);
  mix-blend-mode: screen
}

.qr-card small {
  font: 8px "DM Mono";
  color: #aaa
}

.qr-card strong {
  font-size: 30px;
  letter-spacing: -.06em;
  margin: 8px 0
}

.qr-card span {
  font-size: 10px;
  color: #aaa
}

.zap-type {
  position: absolute;
  right: -2%;
  bottom: 8%;
  font-size: clamp(75px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: -.11em;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  opacity: .09
}

.big-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
  margin-top: 70px;
  font-size: 22px;
  letter-spacing: -.04em
}

.big-link span {
  font-size: 30px
}

.capabilities {
  background: #111;
  color: var(--paper);
  max-width: none;
  padding-top: 150px;
  padding-bottom: 150px
}

.capabilities .section-kicker {
  color: #aaa
}

.cap-head {
  display: grid;
  grid-template-columns: 1fr .45fr;
  gap: 10%;
  margin: 50px 0 90px
}

.cap-head p {
  color: #aaa;
  line-height: 1.5;
  max-width: 350px
}

.cap-list {
  max-width: 1380px;
  margin: auto
}

.cap-item {
  display: grid;
  grid-template-columns: 55px 1fr 50px;
  align-items: start;
  border-top: 1px solid #fff2;
  padding: 30px 0;
  transition: .35s
}

.cap-item:last-child {
  border-bottom: 1px solid #fff2
}

.cap-item>span,
.cap-item>b {
  font: 11px "DM Mono";
  color: #888
}

.cap-item h3 {
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: -.07em;
  margin: 0;
  transition: .35s
}

.cap-item p {
  max-width: 600px;
  color: #888;
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 13px
}

.cap-item>b {
  text-align: right
}

.cap-item:hover h3,
.cap-item.active h3 {
  color: var(--lime);
  transform: translateX(12px)
}

.audience {
  padding-top: 150px;
  padding-bottom: 150px
}

.audience h2 {
  margin: 55px 0 80px
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.audience-grid article {
  min-height: 320px;
  padding: 24px;
  border-right: 1px solid var(--line);
  position: relative
}

.audience-grid article:last-child {
  border: 0
}

.audience-grid span {
  font: 10px "DM Mono";
  color: #777
}

.audience-grid h3 {
  font-size: 28px;
  letter-spacing: -.05em;
  margin: 90px 0 15px
}

.audience-grid p {
  font-size: 13px;
  line-height: 1.5;
  color: #67655f
}

.audience-grid b {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-weight: 400
}

.case {
  background: #dcd9cf;
  max-width: none;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  padding-top: 150px;
  padding-bottom: 150px
}

.case-copy {
  max-width: 620px
}

.case-copy .mono {
  display: block;
  margin: 38px 0 25px
}

.case h2 {
  font-size: clamp(50px, 6vw, 88px)
}

.case-copy p {
  max-width: 450px;
  line-height: 1.5;
  color: #55534d;
  margin: 35px 0
}

.case-visual {
  display: flex;
  align-items: center;
  justify-content: center
}

.case-screen {
  width: min(620px, 100%);
  height: 550px;
  background: #101010;
  color: #eee;
  position: relative;
  overflow: hidden;
  padding: 25px
}

.screen-nav {
  font: 10px "DM Mono";
  display: flex;
  gap: 35px;
  color: #aaa;
  border-bottom: 1px solid #fff2;
  padding-bottom: 18px
}

.screen-nav:first-letter {
  color: #fff
}

.screen-body {
  position: absolute;
  left: 11%;
  top: 28%;
  z-index: 2
}

.screen-body small {
  font: 9px "DM Mono";
  color: #aaa
}

.screen-body h3 {
  font-size: 58px;
  line-height: .9;
  letter-spacing: -.07em;
  margin: 18px 0 30px
}

.screen-body button {
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 11px
}

.screen-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid #fff3;
  border-radius: 50%;
  right: -120px;
  bottom: -200px;
  box-shadow: 0 0 120px #c7ff3d12
}

.process {
  padding-top: 150px;
  padding-bottom: 150px
}

.process-head {
  margin: 55px 0 80px
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line)
}

.process-grid>div {
  padding: 24px;
  border-right: 1px solid var(--line);
  min-height: 250px
}

.process-grid>div:last-child {
  border-right: 0
}

.process-grid span {
  font: 10px "DM Mono";
  color: #777
}

.process-grid h3 {
  font-size: 28px;
  letter-spacing: -.05em;
  margin: 90px 0 15px
}

.process-grid p {
  font-size: 12px;
  color: #666;
  line-height: 1.5
}

.quote {
  background: var(--lime);
  max-width: none;
  padding-top: 130px;
  padding-bottom: 130px
}

.quote blockquote {
  font-size: clamp(45px, 6.5vw, 100px);
  line-height: .9;
  letter-spacing: -.075em;
  max-width: 1200px;
  margin: 55px 0 60px
}

.quote-author {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #0003;
  padding-top: 15px;
  font: 10px "DM Mono";
  text-transform: uppercase
}

.studio {
  padding-top: 150px;
  padding-bottom: 100px
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10%;
  margin-top: 60px
}

.studio-grid p {
  line-height: 1.5;
  color: #555;
  margin: 0 0 25px
}

.studio-marquee {
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  font-size: clamp(25px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: -.07em
}

.insights {
  padding-top: 100px;
  padding-bottom: 150px
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px
}

.insight-grid article {
  min-height: 300px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column
}

.insight-grid article:last-child {
  border-right: 0
}

.insight-grid span {
  font: 9px "DM Mono";
  color: #777
}

.insight-grid h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.06em;
  max-width: 300px;
  margin-top: auto
}

.insight-grid b {
  font-size: 11px;
  font-weight: 500
}

.cta {
  background: #111;
  color: var(--paper);
  max-width: none;
  padding-top: 150px;
  padding-bottom: 150px
}

.cta-grid {
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 12%
}

.cta .section-kicker {
  color: #888
}

.cta h2 {
  margin: 50px 0 30px
}

.cta p {
  color: #999;
  max-width: 430px;
  line-height: 1.5
}

.cta form {
  display: grid;
  gap: 24px
}

.cta label {
  font: 9px "DM Mono";
  text-transform: uppercase;
  color: #888
}

.cta input,
.cta select,
.cta textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #fff3;
  background: transparent;
  color: #fff;
  padding: 12px 0 13px;
  outline: none;
  border-radius: 0
}

.cta select option {
  background: #111
}

.cta textarea {
  height: 90px;
  resize: vertical
}

.cta input:focus,
.cta select:focus,
.cta textarea:focus {
  border-color: var(--lime)
}

.cta .button {
  width: max-content
}

.form-success {
  display: none;
  border: 1px solid #fff2;
  padding: 16px;
  color: var(--lime);
  font-size: 12px
}

.form-success.show {
  display: block
}

.footer {
  background: #111;
  color: var(--paper);
  border-top: 1px solid #fff2;
  max-width: none;
  padding-top: 55px;
  padding-bottom: 30px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 70px
}

.footer-top p {
  font-size: 13px;
  line-height: 1.4;
  color: #888;
  text-align: right
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid #fff2;
  padding-top: 25px
}

.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-grid small {
  font: 9px "DM Mono";
  color: #666;
  margin-bottom: 12px
}

.footer-grid a {
  font-size: 13px;
  color: #bbb
}

.footer-grid a:hover {
  color: var(--lime)
}

.footer-bottom {
  border-top: 1px solid #fff2;
  margin-top: 80px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font: 9px "DM Mono";
  color: #666;
  text-transform: uppercase
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

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

.cursor {
  display: none;
  position: fixed;
  z-index: 100;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s
}

.cursor.active {
  width: 48px;
  height: 48px
}

@media (min-width:1000px) {
  .cursor {
    display: block
  }
}

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

  .desktop-nav,
  .nav-cta {
    display: none
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    cursor: pointer;
    position: relative;
    z-index: 41
  }

  .menu-toggle i {
    width: 28px;
    height: 1px;
    background: currentColor;
    display: block
  }

  .hero {
    padding-top: 115px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 20px
  }

  .hero h1 {
    width: 100%;
    margin-left: 0
  }

  .hero-art {
    height: 520px;
    min-height: 0
  }

  .hero-meta {
    font-size: 9px
  }

  .hero-meta span:last-child {
    display: none
  }

  .intro-content,
  .cap-head,
  .studio-grid,
  .cta-grid,
  .case {
    grid-template-columns: 1fr
  }

  .intro {
    padding-top: 100px;
    padding-bottom: 100px
  }

  .intro-content {
    gap: 45px
  }

  .work {
    padding-bottom: 100px
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 65px
  }

  .project-visual {
    height: 500px
  }

  .capabilities,
  .audience,
  .process {
    padding-top: 100px;
    padding-bottom: 100px
  }

  .cap-head {
    gap: 30px;
    margin-bottom: 55px
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr
  }

  .audience-grid article:nth-child(2) {
    border-right: 0
  }

  .audience-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .case {
    gap: 50px
  }

  .case-visual {
    order: -1
  }

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

  .process-grid>div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 180px
  }

  .process-grid h3 {
    margin-top: 50px
  }

  .insight-grid {
    grid-template-columns: 1fr
  }

  .insight-grid article {
    border-right: 0;
    min-height: 220px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid div:last-child {
    grid-column: 1/-1
  }

  .footer-bottom {
    gap: 10px;
    flex-wrap: wrap
  }
}

@media (max-width:600px) {
  .mobile-menu a {
    font-size: 38px
  }

  .hero h1 {
    font-size: 56px
  }

  .hero-art {
    height: 430px
  }

  .panel-main {
    width: 76%;
    height: 61%;
    left: 12%;
    padding: 14px
  }

  .panel-title {
    font-size: 42px;
    margin-top: 45px
  }

  .panel-float {
    width: 150px
  }

  .projects {
    gap: 50px
  }

  .project-visual {
    height: 420px
  }

  .phone-ui {
    width: 200px;
    height: 400px
  }

  .reach-word {
    font-size: 92px
  }

  .reach-ui {
    width: 210px
  }

  .lms-window {
    left: 4%;
    right: 4%
  }

  .lms-window aside {
    padding: 12px
  }

  .lms-main {
    padding: 15px
  }

  .lms-main h4 {
    font-size: 23px
  }

  .qr-card {
    width: 210px;
    height: 275px
  }

  .fake-qr {
    width: 110px;
    height: 110px
  }

  .zap-type {
    font-size: 80px
  }

  .audience-grid {
    grid-template-columns: 1fr
  }

  .audience-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 240px
  }

  .audience-grid article:nth-child(2) {
    border-bottom: 1px solid var(--line)
  }

  .audience-grid article:last-child {
    border-bottom: 0
  }

  .audience-grid h3 {
    margin-top: 65px
  }

  .case-screen {
    height: 420px
  }

  .screen-body h3 {
    font-size: 45px
  }

  .studio-marquee {
    gap: 25px;
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-grid div:last-child {
    grid-column: auto
  }

  .footer-bottom {
    display: grid
  }

  .hero-actions {
    flex-wrap: wrap
  }

  .section-head {
    display: block
  }

  .section-head p {
    margin-top: 30px
  }

  .quote-author {
    display: grid;
    gap: 10px
  }
}

/* ===== Project / case-study pages ===== */
.project-link {
  display: block
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .65;
  transition: .25s
}

.back-link:hover {
  opacity: 1
}

.project-hero {
  padding-top: 150px;
  padding-bottom: 50px
}

.project-hero h1 {
  font-size: clamp(46px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -.07em;
  margin: 26px 0 30px
}

.project-hero .lede {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  max-width: 640px;
  color: #4e4d48
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  margin: 50px 0 0
}

.meta-row div {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.meta-row small {
  font: 10px "DM Mono", monospace;
  color: #77766f;
  text-transform: uppercase;
  letter-spacing: .05em
}

.meta-row strong {
  font-size: 16px;
  letter-spacing: -.02em;
  font-weight: 600
}

.project-showcase {
  padding-top: 70px;
  padding-bottom: 0
}

.project-visual.showcase {
  height: clamp(420px, 68vw, 760px)
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 110px 0 100px
}

.overview-grid h3 {
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #77766f;
  margin: 0 0 20px
}

.overview-grid p {
  font-size: 18px;
  line-height: 1.6;
  color: #33322e;
  margin: 0
}

.impact {
  padding-bottom: 120px
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line)
}

.impact-card {
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.impact-card:last-child {
  border-right: 0
}

.impact-card b {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.05em;
  margin-bottom: 8px;
  font-weight: 800
}

.impact-card span {
  font: 11px "DM Mono", monospace;
  color: #6c6a64;
  text-transform: uppercase;
  letter-spacing: .02em
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 110px
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 460px;
  background: #e5e2d9
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.gallery-item.wide {
  grid-column: 1/-1;
  height: 620px
}

.pull-quote {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 110px
}

.pull-quote blockquote {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 900px;
  margin: 24px 0 34px
}

.next-project {
  padding-bottom: 60px
}

.next-project .section-kicker {
  color: #77766f;
  display: block;
  margin-bottom: 8px
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 70px
}

.page-hero h1 {
  font-size: clamp(54px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -.075em;
  margin: 26px 0 0
}

@media (max-width:900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 80px 0
  }

  .project-gallery {
    grid-template-columns: 1fr
  }

  .gallery-item,
  .gallery-item.wide {
    height: 380px
  }

  .project-hero {
    padding-top: 120px
  }

  .page-hero {
    padding-top: 130px
  }
}