@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0a0a0a;
  --ink: #111;
  --charcoal: #181818;
  --grey: #555;
  --orange: #c85a24;
  --white: #fff;
  --light: #d9d9d9;
  --paper: #eceae5;
  --line: rgba(255, 255, 255, .17);
  --dark-line: rgba(10, 10, 10, .22);
  --sans: Manrope, Arial, sans-serif;
  --mono: "DM Mono", monospace
}

* {
  box-sizing: border-box
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: clip
}

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

button {
  font: inherit
}

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

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

.section-index {
  position: absolute;
  z-index: 20;
  top: 32px;
  left: max(4vw, 30px);
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, .52);
  font: 10px/1 var(--mono);
  letter-spacing: .1em
}

.section-index span:first-child {
  color: var(--orange)
}

.fox-mark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 17px;
  flex: none
}

.fox-mark i,
.fox-mark b {
  position: absolute;
  display: block;
  background: var(--orange)
}

.fox-mark i {
  top: 0;
  width: 8px;
  height: 11px;
  clip-path: polygon(0 0, 100% 45%, 75% 100%, 0 77%)
}

.fox-mark i:first-child {
  left: 1px;
  transform: scaleX(-1)
}

.fox-mark i:nth-child(2) {
  right: 1px
}

.fox-mark b {
  left: 2.5px;
  bottom: 0;
  width: 13px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 42%, 75% 100%, 25% 100%, 0 42%)
}

.wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.095em
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 8px
}

.navbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  padding: 0 max(4vw, 30px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s
}

.navbar nav {
  display: flex;
  gap: clamp(21px, 2.4vw, 38px);
  margin-left: auto;
  margin-right: clamp(22px, 3vw, 58px)
}

.navbar nav a,
.nav-cta {
  font: 10px var(--mono);
  letter-spacing: .08em
}

.navbar nav a {
  position: relative
}

.navbar nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .25s
}

.navbar nav a:hover:after {
  width: 100%
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .32);
  padding: 11px 13px;
  transition: background .25s, border-color .25s
}

.nav-cta i {
  font-style: normal;
  color: var(--orange);
  margin-left: 12px
}

.nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange)
}

.nav-cta:hover i {
  color: #fff
}

.navbar.is-scrolled,
.navbar.is-open {
  background: rgba(10, 10, 10, .88);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px)
}

.menu-toggle {
  display: none
}

.cursor {
  position: fixed;
  z-index: 1000;
  top: -7px;
  left: -7px;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  display: grid;
  place-items: center;
  transition: width .2s, height .2s, margin .2s, background .2s
}

.cursor span {
  display: none;
  font: 9px var(--mono);
  letter-spacing: .08em
}

.cursor.is-active {
  width: 29px;
  height: 29px;
  margin: -8px
}

.cursor.is-view {
  width: 70px;
  height: 70px;
  margin: -28px;
  border: 0;
  background: #fff;
  color: #111;
  mix-blend-mode: normal
}

.cursor.is-view span {
  display: block
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 660px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 72% 53%, #222 0 1px, transparent 1px);
  background-size: 13px 13px;
  opacity: .22
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0 4vw;
  border-left: 1px solid rgba(255, 255, 255, .07);
  border-right: 1px solid rgba(255, 255, 255, .07)
}

.hero-grid:before,
.hero-grid:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .055)
}

.hero-grid:before {
  left: 33.33%
}

.hero-grid:after {
  right: 33.33%
}

.hero-mark {
  position: absolute;
  top: 19%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
  font-size: clamp(36px, 5.5vw, 79px);
  font-weight: 800;
  letter-spacing: -.1em
}

.hero-fox {
  width: clamp(31px, 4.7vw, 65px);
  height: clamp(30px, 4.5vw, 62px)
}

.hero-fox i {
  width: 46%;
  height: 60%
}

.hero-fox b {
  left: 14%;
  width: 72%;
  height: 55%
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center
}

.hero-copy>p {
  margin: 0 0 17px;
  font: 10px var(--mono);
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .53)
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(69px, 11.8vw, 184px);
  line-height: .76;
  letter-spacing: -.12em
}

.hero h1 span {
  display: block;
  transform-origin: center;
  will-change: transform
}

.hero h1 em {
  font-style: normal;
  color: var(--orange)
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: max(4vw, 30px);
  right: max(4vw, 30px);
  bottom: 7%;
  display: flex;
  justify-content: space-between;
  font: 9px var(--mono);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5)
}

.hero-meta i {
  color: var(--orange);
  font-size: 15px;
  font-style: normal
}

.hero-disc {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: -35%;
  width: min(52vw, 730px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transform-origin: center
}

.hero-disc:before,
.hero-disc:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  inset: 18%
}

.hero-disc:after {
  inset: 39%;
  border-color: rgba(200, 90, 36, .7)
}

.hero-disc i,
.hero-disc b {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange)
}

.hero-disc i:first-child {
  left: 24%;
  top: 21%
}

.hero-disc i:nth-child(2) {
  right: 20%;
  bottom: 24%;
  background: #fff
}

.hero-disc b {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

/* Shared cinematic story scenes */
.business-story,
.services-story,
.social-story,
.content-story,
.ads-story,
.ecosystem-story,
.work-story {
  position: relative;
  overflow: hidden
}

.business-story {
  height: calc(100vh + 2200px);
  background: var(--paper);
  color: var(--ink)
}

.services-story {
  height: calc(100vh + 3600px);
  background: #0f0f0f
}

.social-story {
  height: calc(100vh + 2200px);
  background: #d9d9d5;
  color: var(--ink)
}

.content-story {
  height: calc(100vh + 2200px);
  background: #121212
}

.ads-story {
  height: calc(100vh + 2300px);
  background: var(--orange);
  color: #111
}

.ecosystem-story {
  height: calc(100vh + 3100px);
  background: #e7e5df;
  color: #111
}

.work-story {
  height: calc(100vh + 1900px);
  background: #171717
}

.business-pin,
.services-pin,
.social-pin,
.content-pin,
.ads-pin,
.ecosystem-pin,
.work-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate
}

.business-story .section-index,
.social-story .section-index,
.ads-story .section-index,
.ecosystem-story .section-index {
  color: rgba(0, 0, 0, .55)
}

/* Business browser scene */
.business-copy {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  top: 15%;
  transform-origin: left center
}

.business-label {
  margin: 0 0 16px;
  font: 10px var(--mono);
  letter-spacing: .14em;
  color: var(--orange)
}

.business-copy h2 {
  margin: 0;
  font-size: clamp(67px, 10.3vw, 160px);
  letter-spacing: -.1em;
  line-height: .77
}

.business-copy h2 span {
  display: block
}

.business-copy em {
  font-style: normal;
  color: var(--orange)
}

.business-question {
  font-size: clamp(58px, 8vw, 125px);
  line-height: .86;
  letter-spacing: -.09em;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0)
}

.browser-hero {
  position: absolute;
  right: 4vw;
  bottom: 8%;
  width: min(70vw, 1100px);
  height: min(64vh, 650px);
  background: #111;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
  will-change: transform;
}

.browser-chrome {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font: 9px var(--mono);
  letter-spacing: .1em;
  color: #777
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange)
}

.browser-chrome i:nth-child(2) {
  background: #777
}

.browser-chrome i:nth-child(3) {
  background: #d9d9d9
}

.browser-chrome span {
  margin-left: 7%;
  color: #ddd
}

.browser-chrome b {
  margin-left: auto;
  font-weight: 400;
  color: #fff
}

.browser-canvas {
  position: relative;
  height: calc(100% - 44px);
  overflow: hidden;
  background: #e6e4df
}

.browser-wire {
  position: absolute;
  top: 11%;
  left: 7%;
  width: 38%;
  display: grid;
  gap: 10px
}

.browser-wire i {
  height: 8px;
  background: #aaa;
  display: block;
  transform-origin: left
}

.browser-wire i:nth-child(2) {
  width: 80%
}

.browser-wire i:nth-child(3) {
  width: 65%
}

.browser-wire i:nth-child(4) {
  width: 40%;
  height: 3px;
  background: #777
}

.browser-title {
  position: absolute;
  left: 7%;
  top: 26%;
  z-index: 3;
  font-size: clamp(52px, 6vw, 100px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 800;
}

.browser-title em {
  font-style: normal;
  color: var(--orange)
}

.browser-image {
  position: absolute;
  right: 7%;
  top: 12%;
  width: 42%;
  height: 62%;
  background: #555;
  overflow: hidden
}

.browser-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c85a24;
  clip-path: polygon(0 0, 100% 0, 100% 26%, 29% 100%, 0 100%)
}

.browser-image span {
  position: absolute;
  z-index: 2;
  bottom: 11%;
  left: 9%;
  color: #fff;
  font: 10px var(--mono);
  line-height: 1.3;
  letter-spacing: .1em
}

.browser-image i {
  position: absolute;
  right: 12%;
  bottom: 13%;
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%
}

.browser-button {
  position: absolute;
  left: 7%;
  bottom: 13%;
  padding: 12px 14px;
  background: #111;
  color: #fff;
  font: 9px var(--mono);
  letter-spacing: .1em
}

.browser-button b {
  color: var(--orange);
  font-size: 17px;
  margin-left: 20px
}

.browser-footer {
  position: absolute;
  right: 7%;
  bottom: 14%;
  width: 42%;
  display: flex;
  gap: 7px
}

.browser-footer i {
  height: 3px;
  flex: 1;
  background: #777
}

.business-stage {
  position: absolute;
  z-index: 6;
  right: 5vw;
  top: 18%;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 10px var(--mono);
  letter-spacing: .1em
}

.business-stage span {
  color: var(--orange)
}

.business-stage strong {
  font-weight: 400
}

.business-stage small {
  color: #666
}

.business-final {
  position: absolute;
  z-index: 7;
  left: max(5vw, 48px);
  bottom: 10%;
  margin: 0;
  font-size: clamp(40px, 6vw, 92px);
  line-height: .8;
  letter-spacing: -.1em;
  opacity: 0;
  transform: translateY(55px)
}

.business-final em {
  font-style: normal;
  color: var(--orange)
}

/* Services */
.services-pin .section-index {
  z-index: 20
}

.services-copy {
  position: absolute;
  z-index: 8;
  left: max(5vw, 48px);
  top: 50%;
  width: 42%;
  transform: translateY(-45%)
}

.services-copy>p {
  margin: 0 0 13px;
  font: 10px var(--mono);
  letter-spacing: .14em;
  color: var(--orange)
}

.services-copy h2 {
  margin: 0;
  font-size: clamp(82px, 13vw, 210px);
  line-height: .72;
  letter-spacing: -.115em
}

.services-copy>span {
  display: block;
  margin-top: 28px;
  color: var(--orange);
  font: 10px var(--mono);
  letter-spacing: .14em
}

.services-copy small {
  display: block;
  max-width: 285px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .54);
  font-size: 14px;
  line-height: 1.4
}

.service-rail {
  position: absolute;
  z-index: 9;
  left: max(5vw, 48px);
  bottom: 8%;
  display: flex;
  gap: clamp(15px, 2.4vw, 35px);
  font: 10px var(--mono);
  letter-spacing: .1em
}

.service-rail button {
  appearance: none;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  background: none;
  color: rgba(255, 255, 255, .38);
  padding: 9px 0 0;
  min-width: 44px;
  text-align: left;
  cursor: pointer
}

.service-rail button.is-active {
  color: #fff;
  border-color: var(--orange)
}

.service-object {
  position: absolute;
  z-index: 4;
  right: 6.5vw;
  top: 50%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  will-change: transform
}

.service-object>div {
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform, opacity
}

.object-web {
  background: #e8e6e0;
  color: #111;
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 11%;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, .2)
}

.object-web:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7%;
  background: #111
}

.object-web b {
  position: relative;
  z-index: 2;
  font-size: clamp(28px, 4vw, 62px);
  line-height: .8;
  letter-spacing: -.1em
}

.object-web>i {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 43%;
  height: 58%;
  background: var(--orange)
}

.object-web>i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #555;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%)
}

.object-web span {
  position: absolute;
  left: 11%;
  bottom: 15%;
  height: 4px;
  background: #111;
  width: 30%
}

.object-web span:last-child {
  bottom: 11%;
  width: 19%;
  background: #777
}

.object-social {
  width: 50%;
  height: 91%;
  inset: 4.5% 25%;
  border: 7px solid #0a0a0a;
  border-radius: 12%;
  background: #e9e8e3;
  padding: 13% 9%;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, .2)
}

.object-social>div {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 8%;
  align-items: center
}

.object-social>div i {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange)
}

.object-social b {
  font-size: clamp(8px, 1vw, 13px);
  line-height: 1
}

.object-social small {
  grid-column: 2;
  font: 7px var(--mono);
  line-height: 1.3
}

.object-social>span {
  display: inline-block;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #222;
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  margin: 16% 4% 10% 0
}

.object-social>span:nth-of-type(2) {
  background: #777
}

.object-social>span:nth-of-type(3) {
  background: #fff
}

.object-social>span:nth-of-type(4) {
  background: #c85a24
}

.object-social em {
  display: block;
  width: 100%;
  height: 42%;
  background: #111
}

.object-social em:before,
.object-social em:after {
  content: "";
  display: inline-block;
  width: 31%;
  height: 100%;
  background: var(--orange)
}

.object-social em:after {
  margin-left: 4%;
  background: #666
}

.object-content {
  width: 56%;
  height: 94%;
  inset: 3% 22%;
  border: 1px solid rgba(255, 255, 255, .7);
  background: var(--orange);
  overflow: hidden;
  padding: 9%;
  color: #111
}

.object-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 100% 39%, 39% 100%, 0 100%)
}

.object-content b {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(28px, 4.6vw, 70px);
  line-height: .76;
  letter-spacing: -.1em
}

.object-content>i {
  position: absolute;
  right: 11%;
  bottom: 32%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 2
}

.object-content span {
  position: absolute;
  bottom: 12%;
  height: 8%;
  background: #eee;
  z-index: 2
}

.object-content span:nth-of-type(1) {
  left: 9%;
  width: 19%
}

.object-content span:nth-of-type(2) {
  left: 31%;
  width: 26%;
  background: #555
}

.object-content span:nth-of-type(3) {
  left: 60%;
  right: 9%;
  background: #111
}

.object-content small {
  position: absolute;
  right: 9%;
  bottom: 3%;
  font: 8px var(--mono);
  z-index: 2
}

.object-ads {
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%
}

.object-ads p {
  position: absolute;
  left: 8%;
  top: 8%;
  margin: 0;
  font: 10px var(--mono);
  letter-spacing: .12em;
  color: var(--orange)
}

.object-ads i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(200, 90, 36, .14)
}

.object-ads i:nth-of-type(1) {
  left: 13%;
  top: 30%
}

.object-ads i:nth-of-type(2) {
  left: 43%;
  top: 44%;
  background: #fff
}

.object-ads i:nth-of-type(3) {
  right: 13%;
  top: 21%
}

.object-ads i:nth-of-type(4) {
  right: 17%;
  bottom: 20%;
  background: #777
}

.object-ads i:nth-of-type(5) {
  left: 20%;
  bottom: 17%
}

.object-ads span {
  position: absolute;
  left: 17%;
  top: 50%;
  width: 66%;
  height: 1px;
  background: rgba(255, 255, 255, .55);
  transform: rotate(32deg)
}

.object-ads span:nth-of-type(2) {
  transform: rotate(-35deg)
}

.object-ads b {
  position: absolute;
  right: 11%;
  bottom: 8%;
  font-size: clamp(31px, 4vw, 62px);
  letter-spacing: -.1em
}

.object-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 10%;
  background: #111
}

.object-brand>i {
  display: block;
  background: #e7e5df
}

.object-brand>i:nth-of-type(2) {
  background: var(--orange)
}

.object-brand>i:nth-of-type(3) {
  background: #666
}

.object-brand>i:nth-of-type(4) {
  background: #222;
  border: 1px solid rgba(255, 255, 255, .3)
}

.object-brand>b {
  position: absolute;
  left: 37%;
  top: 37%;
  width: 26%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  color: var(--orange);
  font-size: clamp(35px, 5vw, 76px);
  letter-spacing: -.14em
}

.object-brand span {
  position: absolute;
  right: 9%;
  bottom: 7%;
  font: 10px var(--mono);
  line-height: 1.2;
  letter-spacing: .1em;
  color: #fff
}

.object-growth {
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%
}

.object-growth>i {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(200, 90, 36, .12)
}

.object-growth>i:nth-of-type(1) {
  left: 9%;
  top: 17%
}

.object-growth>i:nth-of-type(2) {
  left: 42%;
  top: 43%;
  background: #fff
}

.object-growth>i:nth-of-type(3) {
  right: 9%;
  bottom: 10%;
  background: #777
}

.object-growth>i:nth-of-type(4) {
  right: 8%;
  top: 12%;
  width: 9%;
  background: var(--orange)
}

.object-growth span {
  position: absolute;
  left: 16%;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, .58)
}

.object-growth span:nth-of-type(1) {
  top: 35%;
  transform: rotate(27deg)
}

.object-growth span:nth-of-type(2) {
  top: 57%;
  transform: rotate(-25deg)
}

.object-growth span:nth-of-type(3) {
  top: 71%;
  transform: rotate(16deg)
}

.object-growth b {
  position: absolute;
  right: -1%;
  top: -12%;
  font-size: clamp(70px, 12vw, 170px);
  font-weight: 400
}

.services-watermark {
  position: absolute;
  right: -.08em;
  bottom: -.09em;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(130px, 22vw, 340px);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: .7
}

/* Social */
.social-copy {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  top: 20%
}

.social-copy p,
.content-copy p,
.ads-copy p {
  margin: 0 0 14px;
  font: 10px var(--mono);
  letter-spacing: .13em;
  color: var(--orange)
}

.social-copy h2,
.content-copy h2,
.ads-copy h2 {
  margin: 0;
  font-size: clamp(49px, 7.3vw, 110px);
  line-height: .8;
  letter-spacing: -.1em
}

.social-copy em,
.content-copy em,
.ads-copy em {
  font-style: normal;
  color: var(--orange)
}

.social-phone {
  position: absolute;
  z-index: 5;
  right: 15%;
  top: 50%;
  width: min(29vw, 390px);
  height: min(75vh, 680px);
  transform: translateY(-44%);
  border: 8px solid #0a0a0a;
  border-radius: 44px;
  background: #f2f1ec;
  overflow: hidden;
  box-shadow: 26px 26px 0 rgba(10, 10, 10, .15);
  will-change: transform
}

.social-notch {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 35%;
  width: 30%;
  height: 23px;
  background: #0a0a0a;
  border-radius: 0 0 13px 13px
}

.social-profile {
  display: grid;
  grid-template-columns: 24% 1fr;
  gap: 12px;
  margin: 20% 10% 7%;
  align-items: start
}

.social-profile>i {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange)
}

.social-profile b {
  display: block;
  font-size: clamp(8px, .95vw, 12px);
  line-height: 1.1
}

.social-profile span,
.social-profile small {
  display: block;
  margin-top: 5px;
  font-size: clamp(7px, .75vw, 9px);
  line-height: 1.35
}

.social-profile small {
  color: #666
}

.social-stories {
  display: flex;
  gap: 7%;
  margin: 0 11% 9%
}

.social-stories i {
  width: 13%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #222;
  outline: 2px solid var(--orange);
  outline-offset: 3px
}

.social-stories i:nth-child(2n) {
  background: #777
}

.social-stories i:nth-child(3n) {
  background: #dedcd5
}

.social-tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #aaa;
  padding: 0 8% 10px;
  font: 7px var(--mono);
  letter-spacing: .08em
}

.social-tabs span:first-child {
  color: var(--orange)
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 10%
}

.social-grid i {
  display: block;
  aspect-ratio: 1;
  background: #555
}

.social-grid i:nth-child(1),
.social-grid i:nth-child(5) {
  background: var(--orange)
}

.social-grid i:nth-child(2),
.social-grid i:nth-child(6) {
  background: #111
}

.social-reel {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 46%;
  aspect-ratio: .72;
  padding: 8%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--orange);
  color: #111
}

.social-reel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 100% 44%, 43% 100%, 0 100%)
}

.social-reel b,
.social-reel span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(14px, 1.6vw, 23px);
  line-height: .8;
  letter-spacing: -.08em
}

.social-reel span {
  font-size: 17px
}

.social-annotation {
  position: absolute;
  z-index: 4;
  left: max(5vw, 48px);
  bottom: 16%;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 10px var(--mono);
  letter-spacing: .12em
}

.social-annotation i {
  width: min(24vw, 320px);
  height: 1px;
  background: #111;
  transform-origin: left
}

.social-annotation b {
  font-weight: 400;
  color: var(--orange)
}

/* Content edit suite */
.content-copy {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  top: 21%
}

.edit-suite {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(61vw, 900px);
  height: min(62vh, 575px);
  background: #252525;
  border: 1px solid rgba(255, 255, 255, .25);
  transform: translateY(-42%);
  box-shadow: 22px 22px 0 rgba(0, 0, 0, .22);
  will-change: transform
}

.edit-preview {
  position: absolute;
  left: 6%;
  top: 9%;
  bottom: 25%;
  width: 39%;
  background: var(--orange);
  overflow: hidden;
  color: #111;
  padding: 8%
}

.edit-preview:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8e5dd;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%, 0 58%)
}

.edit-preview span {
  position: relative;
  z-index: 2;
  font: 10px var(--mono);
  line-height: 1.25;
  letter-spacing: .1em
}

.edit-preview i {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: 12%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid #111;
  border-radius: 50%
}

.edit-preview b {
  position: absolute;
  z-index: 2;
  left: 9%;
  bottom: 10%;
  font-size: clamp(18px, 2.3vw, 37px);
  line-height: .8;
  letter-spacing: -.09em
}

.edit-controls {
  position: absolute;
  right: 6%;
  top: 9%;
  width: 46%;
  height: 11%;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eee;
  font: 9px var(--mono);
  letter-spacing: .08em
}

.edit-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange)
}

.edit-controls b {
  font-weight: 400;
  margin-left: auto;
  color: #888;
  font-size: 8px
}

.edit-tracks {
  position: absolute;
  right: 6%;
  bottom: 9%;
  width: 46%;
  height: 43%;
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 9px;
  color: #888;
  font: 8px var(--mono)
}

.edit-tracks>em {
  font-style: normal;
  padding-top: 8px
}

.edit-tracks>div {
  display: flex;
  gap: 4px;
  overflow: hidden
}

.edit-tracks i {
  display: block;
  min-width: 23%;
  height: 62%;
  background: var(--orange);
  margin-top: 8px
}

.edit-tracks i:nth-child(2n) {
  background: #888
}

.edit-tracks i:nth-child(3n) {
  background: #eee
}

.edit-tracks>div:last-child i {
  height: 36%;
  background: #555
}

.edit-playhead {
  position: absolute;
  right: 31%;
  bottom: 8%;
  width: 1px;
  height: 48%;
  background: #fff
}

.edit-stages {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  bottom: 12%;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 38%
}

.edit-stages span {
  font: 10px var(--mono);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .34);
  transition: color .2s, transform .2s
}

.edit-stages span.is-active {
  color: var(--orange);
  transform: translateX(7px)
}

/* Ads campaign console */
.ads-copy {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  top: 19%
}

.ads-copy p {
  color: #111
}

.ads-copy em {
  color: #fff
}

.campaign-console {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(61vw, 920px);
  height: min(63vh, 595px);
  background: #111;
  color: #fff;
  box-shadow: 24px 24px 0 rgba(0, 0, 0, .2);
  transform: translateY(-39%);
  will-change: transform
}

.console-head {
  height: 12%;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font: 9px var(--mono);
  letter-spacing: .11em
}

.console-head b {
  font-weight: 400;
  color: var(--orange)
}

.console-side {
  position: absolute;
  top: 12%;
  bottom: 0;
  left: 0;
  width: 22%;
  border-right: 1px solid rgba(255, 255, 255, .18);
  padding: 5% 4%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font: 8px var(--mono);
  letter-spacing: .08em;
  color: #888
}

.console-side span:first-child {
  color: #fff
}

.console-map {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%
}

.console-map i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(200, 90, 36, .15)
}

.console-map i:nth-child(1) {
  left: 16%;
  top: 29%
}

.console-map i:nth-child(2) {
  left: 43%;
  top: 43%;
  background: #fff
}

.console-map i:nth-child(3) {
  right: 12%;
  top: 18%
}

.console-map i:nth-child(4) {
  right: 16%;
  bottom: 17%
}

.console-map i:nth-child(5) {
  left: 16%;
  bottom: 20%;
  background: #777
}

.console-map i:nth-child(6) {
  left: 52%;
  bottom: 8%;
  background: #eee
}

.console-map span {
  position: absolute;
  left: 17%;
  top: 50%;
  width: 67%;
  height: 1px;
  background: rgba(255, 255, 255, .55);
  transform: rotate(31deg);
  transform-origin: left
}

.console-map span:nth-of-type(2) {
  transform: rotate(-33deg)
}

.console-map span:nth-of-type(3) {
  top: 63%;
  transform: rotate(10deg)
}

.console-map b {
  position: absolute;
  left: 36%;
  top: 44%;
  font: 8px var(--mono);
  letter-spacing: .08em;
  color: #fff
}

.console-card {
  position: absolute;
  left: 27%;
  bottom: 8%;
  padding: 16px;
  background: var(--orange);
  color: #111;
  min-width: 160px
}

.console-card small {
  font: 8px var(--mono);
  letter-spacing: .1em
}

.console-card b {
  display: block;
  margin: 10px 0;
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: .9;
  letter-spacing: -.07em
}

.console-card span {
  font: 8px var(--mono);
  letter-spacing: .08em
}

.ads-final {
  position: absolute;
  z-index: 6;
  right: 6%;
  bottom: 10%;
  margin: 0;
  font-size: clamp(27px, 3.8vw, 57px);
  line-height: .83;
  letter-spacing: -.09em;
  opacity: 0;
  transform: translateY(42px)
}

.ads-final em {
  font-style: normal;
  color: #fff
}

/* Offline to ecosystem */
.ecosystem-word {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  font-size: clamp(130px, 24vw, 370px);
  font-weight: 800;
  letter-spacing: -.13em;
  line-height: .72;
  color: #111;
  white-space: nowrap
}

.ecosystem-stack {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(62vw, 880px);
  aspect-ratio: 1.48;
  transform: translate(-50%, -42%);
  will-change: transform
}

.ecosystem-stack>div {
  position: absolute;
  will-change: transform, opacity;
  transform-origin: center
}

.stack-browser {
  inset: 9% 6%;
  background: #111;
  color: #fff;
  padding: 7%;
  box-shadow: 20px 20px 0 rgba(0, 0, 0, .12)
}

.stack-browser:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8%;
  border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.stack-browser span {
  font-size: clamp(27px, 4vw, 61px);
  line-height: .8;
  letter-spacing: -.1em;
  position: relative;
  z-index: 2
}

.stack-browser>i {
  position: absolute;
  right: 7%;
  top: 18%;
  width: 39%;
  height: 63%;
  background: var(--orange)
}

.stack-browser>i:nth-of-type(2) {
  right: 14%;
  top: 29%;
  width: 24%;
  height: 37%;
  background: #eee
}

.stack-social {
  width: 25%;
  aspect-ratio: .55;
  right: 4%;
  top: 3%;
  background: #f0eee9;
  border: 5px solid #111;
  border-radius: 10%;
  padding: 8%;
  color: #111
}

.stack-social span {
  font-size: clamp(8px, 1vw, 14px);
  font-weight: 700;
  line-height: .9
}

.stack-social i {
  display: block;
  margin-top: 18%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange)
}

.stack-social i:nth-of-type(2) {
  width: 100%;
  height: 19%;
  aspect-ratio: auto;
  border-radius: 0;
  background: #111
}

.stack-social i:nth-of-type(3) {
  width: 100%;
  height: 27%;
  aspect-ratio: auto;
  border-radius: 0;
  background: #777
}

.stack-reel {
  width: 24%;
  aspect-ratio: .66;
  left: 1%;
  bottom: 3%;
  background: var(--orange);
  padding: 7%;
  color: #fff
}

.stack-reel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 100% 44%, 44% 100%, 0 100%)
}

.stack-reel span,
.stack-reel i {
  position: relative;
  z-index: 2;
  font-size: clamp(9px, 1.1vw, 16px);
  font-style: normal;
  line-height: .9
}

.stack-reel i {
  position: absolute;
  right: 10%;
  bottom: 9%;
  font-size: 18px
}

.stack-ad {
  right: -2%;
  bottom: 6%;
  width: 26%;
  aspect-ratio: 1;
  background: #111;
  color: #fff;
  padding: 8%
}

.stack-ad span {
  font-size: clamp(12px, 1.7vw, 25px);
  line-height: .82;
  letter-spacing: -.08em
}

.stack-ad i {
  position: absolute;
  right: 10%;
  bottom: 8%;
  font-style: normal;
  font-size: clamp(20px, 3vw, 45px);
  color: var(--orange)
}

.stack-orbit {
  width: 48%;
  aspect-ratio: 1;
  left: 27%;
  top: 24%;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%
}

.stack-orbit:before,
.stack-orbit:after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%
}

.stack-orbit:after {
  inset: 40%;
  border-color: var(--orange)
}

.stack-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange)
}

.stack-orbit i:nth-child(1) {
  left: 14%;
  top: 34%
}

.stack-orbit i:nth-child(2) {
  left: 48%;
  top: 47%;
  background: #fff
}

.stack-orbit i:nth-child(3) {
  right: 12%;
  top: 19%
}

.stack-orbit i:nth-child(4) {
  right: 12%;
  bottom: 21%;
  background: #777
}

.stack-orbit i:nth-child(5) {
  left: 20%;
  bottom: 15%;
  background: #eee
}

.stack-orbit b {
  position: absolute;
  left: 44%;
  top: 40%;
  font-size: clamp(28px, 4vw, 63px);
  letter-spacing: -.14em;
  color: var(--orange)
}

.ecosystem-steps {
  position: absolute;
  z-index: 6;
  right: max(4vw, 38px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  font: 10px var(--mono);
  letter-spacing: .1em
}

.ecosystem-steps>i {
  display: block;
  width: 1px;
  height: 17px;
  background: rgba(0, 0, 0, .34)
}

.ecosystem-steps span {
  opacity: .38;
  transition: opacity .2s, color .2s, transform .2s
}

.ecosystem-steps span.is-active {
  opacity: 1;
  color: var(--orange);
  transform: translateX(-10px)
}

.ecosystem-final {
  position: absolute;
  z-index: 7;
  left: max(5vw, 48px);
  bottom: 11%;
  margin: 0;
  font-size: clamp(47px, 6.9vw, 105px);
  line-height: .78;
  letter-spacing: -.11em;
  opacity: 0;
  transform: translateY(50px)
}

.ecosystem-final em {
  font-style: normal;
  color: var(--orange)
}

/* Work */
.work-pin>h2 {
  position: absolute;
  z-index: 5;
  left: max(5vw, 48px);
  top: 17%;
  margin: 0;
  font-size: clamp(75px, 12.5vw, 195px);
  line-height: .75;
  letter-spacing: -.12em
}

.work-pin>h2 em {
  font-style: normal;
  color: var(--orange)
}

.work-stage {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 9%;
  width: min(61vw, 930px);
  height: min(58vh, 550px)
}

.case-study {
  position: absolute;
  inset: 0;
  background: #e9e7e1;
  color: #111;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: 22px 22px 0 rgba(0, 0, 0, .2)
}

.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8%;
  background: #111
}

.case-study .case-art {
  position: absolute;
  inset: 12% 4% 28%;
  background: #c85a24;
  overflow: hidden
}

.case-study .case-art:before,
.case-study .case-art:after {
  content: "";
  position: absolute;
  display: block
}

.case-study .case-art:before {
  inset: 0;
  background: #111;
  clip-path: polygon(0 0, 42% 0, 100% 70%, 100% 100%, 0 100%)
}

.case-study .case-art:after {
  right: 10%;
  bottom: 8%;
  width: 33%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%
}

.case-study.is-two .case-art {
  background: #555
}

.case-study.is-two .case-art:before {
  background: #eee;
  clip-path: polygon(0 0, 100% 0, 100% 44%, 51% 100%, 0 100%)
}

.case-study.is-three .case-art {
  background: #111
}

.case-study.is-three .case-art:before {
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 31%, 34% 100%, 0 100%)
}

.case-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font: 9px var(--mono);
  letter-spacing: .1em
}

.case-study h3 {
  position: relative;
  z-index: 2;
  max-width: 60%;
  margin: 13px 0 0;
  font-size: clamp(22px, 3.3vw, 50px);
  letter-spacing: -.09em;
  line-height: .87
}

.work-count {
  position: absolute;
  z-index: 7;
  right: 5vw;
  top: 18%;
  font: 10px var(--mono);
  letter-spacing: .12em;
  color: var(--orange)
}

/* Calm informational chapters */
.services-overview,
.pricing,
.about,
.why {
  position: relative;
  padding: 17vw max(5vw, 48px) 12vw
}

.services-overview {
  background: #111
}

.overview-head,
.pricing-head,
.about-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px
}

.overview-head h2,
.pricing-head h2,
.about-head h2 {
  margin: 0;
  font-size: clamp(55px, 9vw, 138px);
  line-height: .78;
  letter-spacing: -.105em
}

.overview-head em,
.pricing-head em,
.about-head em {
  font-style: normal;
  color: var(--orange)
}

.overview-head p,
.pricing-head p,
.about-head p {
  max-width: 330px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.45
}

.overview-list {
  margin-top: 10vw;
  border-top: 1px solid var(--line)
}

.service-list-item {
  display: grid;
  grid-template-columns: 8% 39% 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s
}

.service-list-item:hover {
  background: #1d1d1d;
  padding-left: 23px
}

.service-list-item>span {
  font: 10px var(--mono);
  color: var(--orange)
}

.service-list-item h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 32px);
  letter-spacing: -.06em
}

.service-list-item p {
  margin: 0;
  max-width: 350px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  line-height: 1.35
}

.service-list-item i {
  font-style: normal;
  font-size: 19px
}

.pricing {
  background: #e8e6e0;
  color: #111
}

.pricing .section-index,
.about .section-index {
  color: rgba(0, 0, 0, .55)
}

.pricing-head p {
  color: #555
}

.pricing>h3 {
  margin: 10vw 0 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(0, 0, 0, .35);
  font: 10px var(--mono);
  letter-spacing: .1em;
  font-weight: 400
}

.pricing-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, .25);
  background: rgba(0, 0, 0, .25)
}

.price-card {
  min-height: 265px;
  padding: 23px;
  background: #e8e6e0;
  display: flex;
  flex-direction: column
}

.price-card>span,
.package-card>span {
  font-size: 11px;
  color: #555
}

.price-card h3,
.package-card h3 {
  margin: 24px 0 8px;
  font-size: clamp(24px, 3vw, 46px);
  letter-spacing: -.08em
}

.price-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #555;
  max-width: 245px
}

.price-note {
  max-width: 410px;
  margin: 15px 0 0;
  color: #555;
  font: 10px/1.45 var(--mono)
}

.package-card {
  min-height: 250px;
  padding: 24px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column
}

.package-card:nth-child(2) {
  background: var(--orange)
}

.package-card>span {
  color: rgba(255, 255, 255, .68)
}

.package-card a {
  margin-top: auto;
  font: 10px var(--mono);
  letter-spacing: .1em
}

.package-card a i {
  font-style: normal;
  margin-left: 6px;
  color: var(--orange)
}

.package-card:nth-child(2) a i {
  color: #fff
}

.about {
  background: #161616
}

.about-head p {
  color: rgba(255, 255, 255, .58)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 9vw
}

.team-card {
  min-width: 0
}

.team-card>div {
  height: clamp(160px, 19vw, 275px);
  position: relative;
  overflow: hidden;
  background: #242424
}

.team-card>div:before {
  content: "";
  position: absolute;
  inset: 11% 10%;
  border: 1px solid rgba(255, 255, 255, .28)
}

.team-card>div:after {
  content: "";
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  left: 22%;
  top: 22%;
  border-radius: 50%;
  background: #777
}

.team-card:nth-child(2)>div {
  background: #57311d
}

.team-card:nth-child(3)>div {
  background: #cccac4
}

.team-card:nth-child(4)>div {
  background: #393939
}

.team-card:nth-child(5)>div {
  background: #684d3d
}

.team-card:nth-child(6)>div {
  background: #aaa69e
}

.team-card:nth-child(3)>div:after,
.team-card:nth-child(6)>div:after {
  background: #222
}

.team-card>div span {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  color: var(--orange);
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 800;
  letter-spacing: -.14em
}

.team-card p {
  margin: 13px 0 5px;
  font: 10px var(--mono);
  letter-spacing: .08em
}

.team-card small {
  font: 9px var(--mono);
  color: rgba(255, 255, 255, .45)
}

.why {
  min-height: 92vh;
  background: var(--orange);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.why .section-index {
  color: rgba(0, 0, 0, .58)
}

.why>div h2 {
  margin: 0;
  font-size: clamp(48px, 8.4vw, 129px);
  line-height: .83;
  letter-spacing: -.105em
}

.why em {
  font-style: normal;
  color: #fff
}

.why>p {
  max-width: 360px;
  margin: 9vw 0 0 auto;
  font-size: 15px;
  line-height: 1.45
}

/* Final */
.final-cta {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
  padding: 13vw max(5vw, 48px);
  display: flex;
  align-items: center
}

.cta-copy {
  position: relative;
  z-index: 3
}

.cta-line {
  margin: 0;
  font-size: clamp(72px, 13vw, 200px);
  letter-spacing: -.125em;
  line-height: .73;
  transform-origin: left center
}

.cta-line em,
.cta-line span {
  font-style: normal;
  color: var(--orange)
}

.cta-actions {
  margin-top: clamp(44px, 8vw, 120px);
  display: flex;
  gap: 22px;
  align-items: center
}

.button-primary,
.button-secondary {
  display: flex;
  align-items: center;
  gap: 28px;
  font: 10px var(--mono);
  letter-spacing: .1em
}

.button-primary {
  padding: 15px 18px;
  background: var(--orange);
  transition: background .25s
}

.button-primary:hover {
  background: #e66a2d
}

.button-primary i {
  font-style: normal;
  font-size: 17px;
  transition: transform .2s
}

.button-primary:hover i {
  transform: translateX(6px)
}

.button-secondary {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55)
}

.button-secondary i {
  font-style: normal;
  color: var(--orange)
}

.cta-fox {
  position: absolute;
  right: 8%;
  top: 18%;
  opacity: .18
}

.cta-fox .fox-mark {
  width: min(36vw, 460px);
  height: min(34vw, 430px)
}

.cta-fox .fox-mark i {
  width: 46%;
  height: 60%
}

.cta-fox .fox-mark b {
  left: 14%;
  width: 72%;
  height: 55%
}

.cta-brand {
  position: absolute;
  right: 5vw;
  bottom: 7vw;
  font-size: clamp(28px, 4.4vw, 68px);
  letter-spacing: -.11em;
  font-weight: 800
}

.footer {
  padding: 5vw max(5vw, 48px) 24px;
  background: #121212
}

.footer>div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8vw
}

.footer .brand-link .wordmark {
  font-size: clamp(32px, 5vw, 72px)
}

.footer>div:first-child p {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 29px);
  letter-spacing: -.06em
}

.footer p em {
  color: var(--orange);
  font-style: normal
}

.footer>div:last-child {
  display: flex;
  gap: 8vw;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font: 9px var(--mono);
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6)
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer nav a:hover {
  color: var(--orange)
}

.footer small {
  margin-left: auto;
  color: rgba(255, 255, 255, .34)
}

@media(max-width:760px) {
  .cursor {
    display: none
  }

  .navbar {
    height: 60px;
    padding: 0 24px
  }

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

  .menu-toggle {
    position: relative;
    display: block;
    margin-left: auto;
    width: 38px;
    height: 35px;
    padding: 0;
    border: 0;
    background: transparent
  }

  .menu-toggle i {
    position: absolute;
    right: 0;
    width: 23px;
    height: 1px;
    background: #fff
  }

  .menu-toggle i:last-child {
    transform: translateY(8px)
  }

  .navbar.is-open nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    top: 60px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 27px 24px;
    background: #111;
    border-top: 1px solid var(--line)
  }

  .navbar.is-open nav a {
    font-size: 12px
  }

  .section-index {
    top: 23px;
    left: 24px;
    gap: 16px;
    font-size: 8px
  }

  .hero {
    min-height: 600px
  }

  .hero-grid {
    inset: 0 24px
  }

  .hero-mark {
    top: 19%;
    font-size: 44px
  }

  .hero-copy {
    top: 48%
  }

  .hero-copy>p {
    font-size: 8px
  }

  .hero h1 {
    font-size: 15vw;
    line-height: .8
  }

  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 8%;
    font-size: 8px
  }

  .hero-meta span:first-child {
    max-width: 145px
  }

  .hero-disc {
    width: 100vw;
    right: -48%;
    bottom: -27%
  }

  .business-story {
    height: calc(100svh + 1350px)
  }

  .services-story {
    height: calc(100svh + 1700px)
  }

  .social-story,
  .content-story,
  .ads-story {
    height: calc(100svh + 1320px)
  }

  .ecosystem-story {
    height: calc(100svh + 1550px)
  }

  .work-story {
    height: calc(100svh + 1050px)
  }

  .business-copy {
    left: 24px;
    top: 16%
  }

  .business-copy h2 {
    font-size: 15vw
  }

  .browser-hero {
    right: -11vw;
    bottom: 20%;
    width: 94vw;
    height: 47vh
  }

  .browser-chrome {
    height: 32px;
    padding: 0 10px;
    font-size: 7px
  }

  .browser-chrome b {
    display: none
  }

  .browser-title {
    font-size: 7vw
  }

  .browser-wire {
    gap: 6px
  }

  .browser-wire i {
    height: 5px
  }

  .business-stage {
    top: auto;
    right: 24px;
    bottom: 11%;
    font-size: 8px
  }

  .business-stage small {
    display: none
  }

  .business-final {
    left: 24px;
    bottom: 14%;
    font-size: 10vw
  }

  .services-copy {
    left: 24px;
    top: 31%;
    width: 64%
  }

  .services-copy h2 {
    font-size: 18vw
  }

  .services-copy small {
    font-size: 12px;
    max-width: 190px
  }

  .service-object {
    right: -11vw;
    top: 58%;
    width: 82vw
  }

  .service-rail {
    left: 24px;
    bottom: 7%;
    max-width: 72%;
    gap: 11px
  }

  .service-rail button {
    font-size: 8px;
    min-width: 29px
  }

  .services-watermark {
    font-size: 30vw
  }

  .social-copy,
  .content-copy,
  .ads-copy {
    left: 24px;
    top: 15%
  }

  .social-copy h2,
  .content-copy h2,
  .ads-copy h2 {
    font-size: 12vw
  }

  .social-phone {
    right: 8%;
    top: 55%;
    width: 57vw;
    height: 61vh;
    border-width: 6px;
    border-radius: 34px
  }

  .social-annotation {
    left: 24px;
    bottom: 10%;
    font-size: 8px
  }

  .social-annotation i {
    width: 22vw
  }

  .edit-suite {
    right: -12vw;
    top: 56%;
    width: 102vw;
    height: 45vh
  }

  .edit-preview {
    left: 5%;
    top: 8%;
    bottom: 24%;
    width: 42%
  }

  .edit-controls {
    right: 5%;
    top: 8%;
    width: 44%;
    font-size: 7px
  }

  .edit-tracks {
    right: 5%;
    bottom: 7%;
    width: 44%
  }

  .edit-stages {
    left: 24px;
    bottom: 9%;
    max-width: 70%;
    gap: 10px
  }

  .edit-stages span {
    font-size: 8px
  }

  .campaign-console {
    right: -10vw;
    top: 57%;
    width: 100vw;
    height: 45vh
  }

  .console-side {
    font-size: 6px;
    gap: 12px
  }

  .console-map {
    right: 4%;
    width: 58%
  }

  .console-card {
    left: 26%;
    bottom: 6%;
    padding: 10px;
    min-width: 120px
  }

  .ads-final {
    right: 24px;
    bottom: 10%;
    font-size: 7vw
  }

  .ecosystem-word {
    font-size: 29vw;
    top: 40%
  }

  .ecosystem-stack {
    width: 104vw;
    top: 53%;
    transform: translate(-50%, -42%)
  }

  .ecosystem-steps {
    right: 24px;
    font-size: 7px
  }

  .ecosystem-steps>i {
    height: 10px
  }

  .ecosystem-final {
    left: 24px;
    bottom: 10%;
    font-size: 10vw
  }

  .work-pin>h2 {
    left: 24px;
    top: 14%;
    font-size: 18vw
  }

  .work-stage {
    right: -9vw;
    bottom: 13%;
    width: 98vw;
    height: 45vh
  }

  .case-study h3 {
    font-size: 7vw;
    max-width: 75%
  }

  .work-count {
    top: 15%;
    right: 24px;
    font-size: 8px
  }

  .services-overview,
  .pricing,
  .about,
  .why {
    padding: 29vw 24px 19vw
  }

  .overview-head,
  .pricing-head,
  .about-head {
    display: block
  }

  .overview-head h2,
  .pricing-head h2,
  .about-head h2 {
    font-size: 14vw
  }

  .overview-head p,
  .pricing-head p,
  .about-head p {
    margin-top: 28px;
    font-size: 13px
  }

  .overview-list {
    margin-top: 15vw
  }

  .service-list-item {
    grid-template-columns: 10% 1fr auto;
    min-height: 82px;
    gap: 10px
  }

  .service-list-item p {
    display: none
  }

  .service-list-item h3 {
    font-size: 17px
  }

  .pricing>h3 {
    margin-top: 17vw
  }

  .pricing-grid,
  .package-grid {
    grid-template-columns: 1fr
  }

  .price-card,
  .package-card {
    min-height: 205px
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 6px;
    margin-top: 15vw
  }

  .team-card>div {
    height: 48vw
  }

  .why {
    min-height: 76vh
  }

  .why>div h2 {
    font-size: 12.7vw
  }

  .why>p {
    margin-top: 16vw;
    font-size: 14px
  }

  .final-cta {
    min-height: 82svh;
    padding: 21vw 24px
  }

  .cta-line {
    font-size: 17vw
  }

  .cta-actions {
    margin-top: 17vw;
    gap: 15px;
    flex-wrap: wrap
  }

  .cta-fox {
    right: -14%;
    top: 20%
  }

  .cta-fox .fox-mark {
    width: 60vw;
    height: 57vw
  }

  .cta-brand {
    right: 24px;
    bottom: 8vw
  }

  .footer {
    padding: 11vw 24px 22px
  }

  .footer>div:first-child {
    display: block;
    padding-bottom: 14vw
  }

  .footer>div:first-child p {
    margin-top: 27px
  }

  .footer>div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
  }

  .footer nav {
    display: grid;
    gap: 12px
  }

  .footer small {
    margin: 13px 0 0;
    grid-column: 1/-1
  }
}

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

  .cursor {
    display: none
  }

  .business-story,
  .services-story,
  .social-story,
  .content-story,
  .ads-story,
  .ecosystem-story,
  .work-story {
    height: 100vh;
    min-height: 100vh
  }

  .business-question,
  .business-final,
  .ads-final,
  .ecosystem-final,
  .cta-actions {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important
  }

  .service-object>div:not(.object-web),
  .ecosystem-stack>div:not(.stack-browser) {
    display: none
  }

  .social-phone,
  .edit-suite,
  .campaign-console {
    transform: translateY(-42%) !important
  }

  .edit-stages span {
    opacity: 1
  }

  .edit-stages span:not(:first-child) {
    display: none
  }
}

@media(min-width:761px) {
  .hero h1 {
    font-size: clamp(65px, 9.2vw, 145px)
  }
}

@media(min-width:761px) {
  .business-copy h2 {
    font-size: clamp(62px, 8.7vw, 138px)
  }
}