:root {
  --paper: #f1f1ef;
  --paper-2: #e9e9e6;
  --ink: #111214;
  --muted: #777b80;
  --faint: rgba(17, 18, 20, .12);
  --dark: #101011;
  --dark-2: #161616;
  --white: #f6f6f2;
  --line-light: rgba(17, 18, 20, .12);
  --line-dark: rgba(246, 246, 242, .14);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --display: "Archivo", "Arial Black", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(25% - .5px), var(--line-light) calc(25% - .5px) calc(25% + .5px), transparent calc(25% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), var(--line-light) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(90deg, transparent calc(75% - .5px), var(--line-light) calc(75% - .5px) calc(75% + .5px), transparent calc(75% + .5px));
}

a,
button {
  color: inherit;
  font: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  border: 0;
  background: none;
}

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

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 41;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  background: var(--dark);
  color: var(--white);
  font-family: var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: loaderOut .8s cubic-bezier(.76, 0, .24, 1) 1.25s forwards;
}

.loader span {
  font-family: var(--display);
  font-size: clamp(46px, 9vw, 150px);
  letter-spacing: -.06em;
}

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

@keyframes loaderOut {
  to { opacity: 0; visibility: hidden; transform: translateY(-2%); }
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 190;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: var(--ink);
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  transition: width .2s ease, height .2s ease, opacity .2s ease;
}

body.cursor-ready .cursor {
  opacity: 1;
}

body.cursor-active .cursor {
  width: 58px;
  height: 58px;
}

.light-section,
.dark-section {
  position: relative;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

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

.dark-section {
  background:
    linear-gradient(90deg, transparent calc(25% - .5px), var(--line-dark) calc(25% - .5px) calc(25% + .5px), transparent calc(25% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), var(--line-dark) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(90deg, transparent calc(75% - .5px), var(--line-dark) calc(75% - .5px) calc(75% + .5px), transparent calc(75% + .5px)),
    var(--dark);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  min-height: 84px;
  padding: 28px 36px 0;
  mix-blend-mode: difference;
  color: var(--white);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 22px;
  display: inline-flex;
  align-items: center;
}

.brand-mark i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
}

.brand-mark i + i {
  margin-left: -6px;
}

.menu-toggle {
  justify-self: center;
  color: inherit;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  top: 70px;
  left: 50%;
  display: none;
  width: min(320px, calc(100vw - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(12, 12, 12, .92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.main-nav.open {
  display: grid;
}

.main-nav a {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.call-chip {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.call-chip span {
  color: rgba(255, 255, 255, .68);
}

.call-chip b {
  grid-column: 1;
}

.call-chip i {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-size: 42px;
  font-style: normal;
  font-weight: 200;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.06fr 1.28fr;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
}

.hero-image {
  position: relative;
  grid-row: 1 / 4;
  min-height: 100svh;
  overflow: hidden;
}

.hero-image img {
  filter: grayscale(1) contrast(1.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .3), transparent 25%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
}

.color-leak,
.color-wash {
  position: absolute;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 58%, rgba(183, 22, 255, .8), transparent 16%),
    radial-gradient(circle at 52% 50%, rgba(50, 183, 255, .65), transparent 18%),
    radial-gradient(circle at 72% 46%, rgba(255, 80, 34, .8), transparent 16%);
  filter: blur(20px);
  opacity: .72;
  mix-blend-mode: screen;
}

.color-leak {
  width: 55%;
  height: 50%;
  right: -7%;
  bottom: 12%;
  animation: leak 7s ease-in-out infinite alternate;
}

@keyframes leak {
  to { transform: translate(-7%, -4%) skewX(-7deg); opacity: .9; }
}

.hero-content {
  grid-column: 2;
  align-self: center;
  padding: 142px 56px 80px 0;
}

.review-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 1px;
  margin-bottom: 54px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 31px;
  height: 31px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  margin-right: -8px;
}

.review-strip p {
  max-width: 280px;
  color: #56585b;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  margin-left: -16.5vw;
  font-family: var(--display);
  font-size: clamp(82px, 13.8vw, 286px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .75;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
}

.hero h1 em {
  margin-left: 16.5vw;
  font-size: .48em;
  letter-spacing: -.075em;
}

.hero-sub {
  max-width: 560px;
  margin-top: 62px;
  color: #6c6f73;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.14;
  font-weight: 700;
}

.hero-sub::first-line {
  color: var(--ink);
}

.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 36px 64px;
}

.pill {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.logo-row {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 0 30px 28px;
  color: #6f7275;
  font-family: var(--display);
  font-size: 15px;
  opacity: .9;
}

.section-kicker,
.side-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(246, 246, 242, .62);
}

.section-kicker span,
.side-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.section-kicker.dark,
.side-label {
  color: #5d6267;
}

.intro {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr 1.42fr;
  gap: 6vw;
  padding: 110px 8vw 80px;
}

.media-card {
  position: relative;
  align-self: start;
  max-width: 660px;
  margin-top: 24px;
  padding: 36px 20px 0;
  border: 1px solid var(--line-dark);
}

.corner {
  position: absolute;
  width: 12px;
  height: 12px;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--white);
}

.corner::before { width: 12px; height: 1px; top: 5px; }
.corner::after { width: 1px; height: 12px; left: 5px; }
.c1 { left: -6px; top: -6px; }
.c2 { right: -6px; top: -6px; }
.c3 { left: -6px; bottom: -6px; }
.c4 { right: -6px; bottom: -6px; }

.meta-line {
  display: flex;
  justify-content: space-between;
  color: rgba(246, 246, 242, .58);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.media-card h2 {
  max-width: 420px;
  margin-top: 54px;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 38px);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  height: 315px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 8px;
}

.video-frame img {
  filter: grayscale(.3) contrast(.95);
}

.video-frame button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  font-size: 38px;
}

.media-card p {
  max-width: 520px;
  margin: 84px 0 0 auto;
  color: rgba(246, 246, 242, .72);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.38;
  text-align: right;
  text-transform: uppercase;
}

.intro-copy {
  align-self: center;
}

.intro-copy > p {
  max-width: 930px;
  margin-top: 48px;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 116px);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .9;
  text-transform: uppercase;
}

.word {
  color: rgba(246, 246, 242, .16);
  transition: color .16s linear;
}

.word.lit {
  color: var(--white);
}

.person-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 64px;
}

.person-line img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  filter: grayscale(1);
}

.person-line span {
  display: grid;
  gap: 5px;
  color: rgba(246, 246, 242, .65);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.person-line b {
  color: var(--white);
}

.services {
  padding-top: 42px;
}

.services-head {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20vw;
  padding: 0 0 60px;
}

.services-head .section-kicker {
  position: absolute;
  left: 0;
  top: 40px;
}

.services-head h2 {
  align-self: start;
  max-width: 620px;
  padding-left: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 62px);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.services-head > div:last-child {
  padding-right: 32px;
}

.services-head p {
  max-width: 610px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
}

.services-head .pill {
  min-height: 42px;
  margin-top: 56px;
  font-size: 11px;
}

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

.service-row {
  display: grid;
  grid-template-columns: .25fr .75fr .75fr .75fr;
  min-height: 206px;
  border-bottom: 1px solid var(--line-dark);
}

.service-row > * {
  padding: 24px 32px;
}

.service-row span {
  color: rgba(246, 246, 242, .28);
  font-family: var(--display);
  font-size: 19px;
}

.service-row h3 {
  max-width: 230px;
  font-family: var(--display);
  font-size: 20px;
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.service-row img {
  height: 150px;
  padding: 0;
  margin: 20px 32px;
  width: calc(100% - 64px);
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  filter: grayscale(.15) contrast(.92);
}

.service-row p {
  max-width: 330px;
  color: rgba(246, 246, 242, .64);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 110px;
}

.adv-title {
  min-height: 400px;
  padding: 0 0 0 0;
}

.adv-title h2,
.fast-track h2,
.delay-title h2,
.case-copy h2,
.team-title h2,
.why-title h2,
.belief-copy blockquote,
.news-title h2,
.faq-title h2,
.contact-copy h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .88;
  text-transform: uppercase;
}

.adv-title h2 {
  max-width: 520px;
  margin-top: 60px;
  font-size: clamp(58px, 6.5vw, 112px);
}

.adv-title h2 span,
.delay-title h2 span,
.fast-track h2 span {
  color: #a1a5a9;
}

.adv-title p {
  max-width: 300px;
  margin-top: 34px;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.35;
}

.adv-list {
  padding-top: 70px;
}

.adv-list h3 {
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.adv-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 54px;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.adv-list div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.adv-list b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #9aa0a5;
  font-size: 9px;
}

.pocket {
  grid-column: 1 / -1;
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  overflow: hidden;
}

.pocket-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, max-content);
  align-items: end;
  gap: 12px 18px;
  padding: 42px 32px;
}

.pocket-stats b {
  font-family: var(--display);
  font-size: 36px;
}

.pocket-stats span {
  width: 80px;
  color: #6c7075;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.pocket h3 {
  max-width: 370px;
  padding: 56px 32px 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 66px);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.pocket p {
  max-width: 340px;
  padding: 0 32px;
  color: #6f7378;
  align-self: end;
  margin-bottom: 80px;
  line-height: 1.45;
}

.pocket img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 78%;
  object-position: center;
  filter: grayscale(.1);
  mask-image: linear-gradient(to left, #000 70%, transparent);
}

.fast-track {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 1px solid var(--line-light);
}

.fast-track h2 {
  max-width: 650px;
  padding-top: 92px;
  font-size: clamp(52px, 6vw, 104px);
}

.fast-track p {
  max-width: 300px;
  margin-top: 28px;
  color: #5d6267;
  font-size: 13px;
  line-height: 1.35;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  border: 1px solid var(--line-light);
}

.step-grid article {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step-grid b {
  font-family: var(--display);
  font-size: 31px;
}

.step-grid p {
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.delay {
  padding-top: 48px;
}

.delay-title {
  min-height: 330px;
}

.delay-title h2 {
  max-width: 960px;
  margin-top: 36px;
  font-size: clamp(49px, 5.4vw, 103px);
}

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

.cost-rows div {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
}

.cost-rows b {
  color: var(--ink);
}

.cost-rows i {
  position: absolute;
  left: var(--x);
  top: 50%;
  width: 76px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-style: normal;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

.cost-rows em {
  color: #656b70;
  font-style: normal;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.case-copy {
  min-height: 600px;
  display: grid;
  align-content: start;
  padding: 80px 70px 0 0;
}

.case-copy h2 {
  margin-top: 52px;
  font-size: clamp(44px, 4.8vw, 88px);
}

.case-copy p {
  max-width: 650px;
  margin-top: 50px;
  color: #666b70;
  font-size: 22px;
  line-height: 1.25;
}

.case-copy dl {
  margin-top: 88px;
  border-top: 1px solid var(--line-light);
}

.case-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.row-link {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 28px;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

.case-quote {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

.case-quote img {
  filter: grayscale(1) contrast(.96);
  opacity: .82;
}

.case-quote blockquote {
  position: absolute;
  left: 72px;
  right: 34px;
  bottom: 60px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 88px);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.result-card {
  position: relative;
  min-height: 210px;
  padding: 46px 56px;
}

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

.result-card b {
  display: block;
  margin-top: 80px;
  font-family: var(--display);
  font-size: 70px;
  line-height: .8;
}

.result-card span {
  position: absolute;
  top: 44px;
  right: 32px;
  max-width: 130px;
  color: rgba(246, 246, 242, .7);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.projects {
  min-height: 720px;
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: center;
  border-top: 1px solid var(--line-light);
}

.side-label {
  align-self: start;
  padding-top: 160px;
}

.project-list {
  padding-right: 60px;
}

.project-list button {
  display: block;
  width: 100%;
  padding: 8px 0;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.08;
  letter-spacing: -.06em;
  text-align: left;
  cursor: pointer;
}

.project-list button span {
  color: #8a8e93;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
}

.project-list p {
  max-width: 540px;
  margin: 18px 0 30px;
  color: #6e7378;
  font-size: 18px;
  line-height: 1.35;
}

.project-preview {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-preview img {
  filter: grayscale(1);
}

.project-preview figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
}

.first-step {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portrait img {
  filter: grayscale(1);
}

.first-copy {
  position: relative;
  padding: 150px 70px;
  background:
    radial-gradient(circle at 55% 70%, rgba(255, 255, 255, .24), transparent 18rem),
    var(--dark-2);
}

.first-copy h2 {
  max-width: 900px;
  margin-top: 70px;
  font-family: var(--display);
  font-size: clamp(75px, 7.4vw, 142px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.first-copy p {
  max-width: 580px;
  margin: 150px 0 0 60px;
  color: var(--white);
  font-size: clamp(29px, 2.6vw, 50px);
  line-height: 1.18;
  font-weight: 700;
}

.person-label {
  margin: 70px 0 0 60px;
  display: grid;
  gap: 9px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.person-label span {
  color: rgba(246, 246, 242, .62);
}

.team {
  padding-top: 70px;
}

.team-title {
  min-height: 220px;
  margin-left: 25%;
}

.team-title h2 {
  margin-top: 45px;
  font-size: clamp(60px, 7vw, 134px);
}

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

.member {
  border-right: 1px solid var(--line-light);
}

.member > span {
  display: block;
  min-height: 28px;
  padding: 8px;
  color: #6e7479;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.member img {
  height: 500px;
  filter: grayscale(1);
}

.member h3 {
  margin: 24px 34px 0;
  font-family: var(--mono);
  font-size: 17px;
  text-transform: uppercase;
}

.member p {
  margin: 4px 34px 42px;
  color: #767b80;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.bars {
  height: 46px;
  margin: 0 34px 12px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px);
  mask-image: linear-gradient(90deg, #000 0 62%, transparent);
}

.member small {
  display: block;
  min-height: 70px;
  margin: 0 34px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.cta-band .color-wash,
.contact .color-wash {
  left: 0;
  right: 0;
  bottom: -22%;
  height: 60%;
  opacity: .78;
}

.cta-band h2 {
  max-width: 760px;
  margin: 70px auto 0;
  grid-column: 1 / 2;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 88px);
  line-height: .9;
  letter-spacing: -.07em;
  text-align: center;
  text-transform: uppercase;
}

.start-card {
  align-self: center;
  justify-self: start;
  width: 50%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

.why {
  padding-top: 86px;
}

.why-title {
  min-height: 250px;
  text-align: center;
}

.why-title h2 {
  margin-top: 44px;
  font-size: clamp(70px, 8vw, 142px);
}

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

.why-cards article {
  min-height: 270px;
  padding: 42px 36px;
  border-right: 1px solid var(--line-light);
}

.why-cards span {
  font-size: 24px;
  font-weight: 700;
}

.why-cards p {
  max-width: 330px;
  margin-top: 50px;
  font-size: 23px;
  line-height: 1.15;
}

.pricing {
  padding: 0 0 90px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 170px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

.stat-strip div {
  display: flex;
  justify-content: space-between;
  padding: 38px 42px;
  border-right: 1px solid var(--line-light);
}

.stat-strip b {
  font-family: var(--display);
  font-size: 52px;
}

.stat-strip span {
  max-width: 120px;
  color: #6d7277;
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.pricing-title {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.pricing-title span {
  color: rgba(246, 246, 242, .42);
  font-family: var(--mono);
}

.pricing-title h2 {
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 120px);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.pricing-title p {
  max-width: 330px;
  color: rgba(246, 246, 242, .55);
  line-height: 1.25;
}

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

.price-card {
  min-height: 510px;
  padding: 42px 50px;
  border-right: 1px solid var(--line-dark);
  background: linear-gradient(180deg, transparent, rgba(121, 26, 177, .2));
}

.price-card.featured {
  background:
    radial-gradient(circle at 64% 100%, rgba(255, 72, 33, .72), transparent 26%),
    radial-gradient(circle at 42% 96%, rgba(177, 24, 255, .75), transparent 28%),
    var(--dark);
}

.price-card h3 {
  font-size: 18px;
}

.price-card small,
.price-card li {
  color: rgba(246, 246, 242, .68);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.price-card b {
  display: block;
  margin: 48px 0 62px;
  font-family: var(--display);
  font-size: 50px;
}

.price-card b span {
  font-family: var(--mono);
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li::before {
  content: "// ";
}

.price-card a {
  min-height: 58px;
  display: grid;
  place-items: center;
  margin-top: 58px;
  border: 1px solid rgba(246, 246, 242, .25);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}

.featured a {
  background: var(--ink);
  border-color: var(--ink);
}

.belief {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  min-height: 720px;
}

.belief-portrait {
  grid-column: 1;
  display: grid;
  grid-template-rows: 1fr 120px;
}

.belief-portrait img {
  filter: grayscale(.25);
}

.belief-portrait span {
  justify-self: end;
  padding: 24px;
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.belief-copy {
  grid-column: 3 / 5;
  padding: 120px 64px 0 0;
}

.belief-copy blockquote {
  max-width: 640px;
  margin-top: 42px;
  font-size: clamp(42px, 4.6vw, 80px);
}

.belief-copy p {
  max-width: 420px;
  margin-top: 52px;
  color: #656a70;
  line-height: 1.45;
}

.timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.timeline article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.timeline b {
  font-size: 24px;
}

.timeline span {
  display: block;
  max-width: 200px;
  margin: 88px 0 0 auto;
  color: #686d72;
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.news {
  padding-top: 80px;
}

.news-title {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 180px;
}

.news-title h2 {
  font-size: clamp(56px, 6vw, 112px);
}

.news-title a {
  justify-self: end;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.article-grid article {
  min-height: 420px;
  border-right: 1px solid var(--line-light);
}

.article-grid img {
  height: 270px;
  filter: grayscale(1);
}

.article-grid span {
  display: block;
  padding: 12px 14px;
  color: #6e7378;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.article-grid h3 {
  max-width: 300px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.2;
}

.newsletter {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.newsletter h2 {
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
}

.newsletter p,
.newsletter label {
  color: rgba(246, 246, 242, .6);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.newsletter input,
.contact-form input {
  width: 100%;
  height: 46px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-family: var(--mono);
  text-transform: uppercase;
  outline: 0;
}

.newsletter button,
.contact-form button {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #9e21ff, #55b9ff, #ff4b2b) 1;
  color: inherit;
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.faq {
  display: grid;
  grid-template-columns: 25% 75%;
  padding-top: 95px;
}

.faq-title h2 {
  margin-top: 56px;
  font-size: clamp(60px, 7vw, 130px);
}

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

details {
  border-bottom: 1px solid var(--line-light);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 28px 28px;
  color: #686d72;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  overflow: hidden;
}

.contact-copy {
  grid-column: 2 / 3;
  padding-top: 140px;
}

.contact-copy h2 {
  margin-top: 42px;
  font-size: clamp(62px, 6.5vw, 128px);
  white-space: nowrap;
}

.contact-copy p {
  max-width: 270px;
  margin-top: 24px;
  color: #656a70;
  line-height: 1.4;
}

.contact-form {
  grid-column: 2 / 4;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  z-index: 1;
}

.contact-form label {
  color: #5d6267;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-form button {
  grid-column: 2;
}

.footer-nav {
  grid-column: 1 / -1;
  align-self: end;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 0 26px 24px;
  z-index: 1;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav .brand {
  font-family: var(--display);
}

.footer-nav nav {
  justify-self: end;
  display: grid;
  gap: 5px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16, 1, .3, 1);
}

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

.magnetic {
  transition: transform .22s ease;
}

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

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

  .call-chip {
    display: none;
  }

  .hero,
  .intro,
  .advantages,
  .fast-track,
  .case-study,
  .first-step,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-image {
    grid-row: auto;
    min-height: 55svh;
  }

  .hero-content {
    grid-column: 1;
    padding: 54px 20px;
  }

  .hero h1 {
    margin-left: 0;
    font-size: clamp(72px, 18vw, 170px);
    white-space: normal;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-actions,
  .logo-row {
    grid-column: 1;
  }

  .intro {
    padding: 100px 20px;
  }

  .services-head,
  .service-row,
  .pocket,
  .projects,
  .team-grid,
  .why-cards,
  .price-grid,
  .belief,
  .article-grid,
  .newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .services-head {
    padding: 80px 20px;
    gap: 40px;
  }

  .service-row {
    grid-template-columns: 80px 1fr;
  }

  .service-row img,
  .service-row p {
    grid-column: 2;
  }

  .pocket img {
    width: 50%;
  }

  .case-quote blockquote {
    left: 28px;
  }

  .belief-copy,
  .timeline,
  .newsletter,
  .contact-copy,
  .contact-form,
  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body::before {
    background:
      linear-gradient(90deg, transparent calc(50% - .5px), var(--line-light) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px));
  }

  .brand {
    font-size: 23px;
  }

  .menu-toggle {
    font-size: 14px;
  }

  .hero-actions,
  .services-head,
  .service-row,
  .pocket,
  .step-grid,
  .projects,
  .team-grid,
  .why-cards,
  .stat-strip,
  .price-grid,
  .belief,
  .timeline,
  .article-grid,
  .newsletter,
  .contact-form,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    padding: 0 16px 34px;
  }

  .pill {
    min-height: 62px;
  }

  .logo-row {
    flex-wrap: wrap;
    gap: 18px;
  }

  .intro-copy > p {
    font-size: clamp(44px, 13vw, 74px);
  }

  .media-card {
    padding: 24px 12px 0;
  }

  .video-frame {
    height: 230px;
  }

  .services-head .section-kicker {
    position: static;
  }

  .service-row > *,
  .service-row img,
  .service-row p {
    grid-column: auto;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    padding-left: 0;
    padding-right: 0;
  }

  .adv-title,
  .adv-list,
  .delay-title,
  .case-copy,
  .first-copy,
  .pricing-title,
  .belief-copy,
  .contact-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pocket-stats {
    grid-template-columns: repeat(2, max-content);
  }

  .pocket img {
    position: relative;
    width: 100%;
    height: 280px;
    mask-image: none;
  }

  .cost-rows div {
    min-height: 92px;
    padding: 12px 16px;
    align-items: start;
  }

  .cost-rows i {
    top: 70%;
  }

  .case-quote,
  .case-copy {
    min-height: 520px;
  }

  .project-list,
  .project-preview,
  .side-label {
    padding: 24px 20px;
  }

  .portrait {
    min-height: 520px;
  }

  .first-copy h2 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .first-copy p,
  .person-label {
    margin-left: 0;
  }

  .member img {
    height: 420px;
  }

  .cta-band h2 {
    grid-column: 1;
    padding: 0 20px;
  }

  .start-card {
    width: 100%;
  }

  .contact {
    min-height: 760px;
  }

  .contact-copy h2 {
    white-space: normal;
  }

  .contact-form {
    padding: 0 20px;
  }
}
