@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-500-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-500-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-italic-500-700.woff2") format("woff2");
  font-style: italic;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/font-d.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/inter-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --orange: #ff3c00;
  --black: #000;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter Tight", Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

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

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: var(--white);
}

.home-link {
  position: fixed;
  z-index: 3;
  top: 48px;
  left: 48px;
  display: grid;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  width: 112px;
  height: 112px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border-radius: 36px;
  background: var(--white);
  font-size: 16px;
  line-height: 16px;
}

.home-link__logo,
.home-link__label {
  grid-area: 1 / 1;
  transition: opacity .24s ease, transform .38s cubic-bezier(.16, 1, .3, 1);
}

.home-link__logo {
  display: block;
  width: 154px;
  max-width: none;
  height: 154px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
}

.home-link__label {
  opacity: 0;
  transform: translateY(12px);
}

.home-link.is-scrolled .home-link__logo {
  opacity: 0;
  transform: translateY(-12px) scale(.72) rotate(-8deg);
}

.home-link.is-scrolled .home-link__label {
  opacity: 1;
  transform: translateY(0);
}

.qr-shell {
  display: block;
  position: fixed;
  z-index: 3;
  top: 48px;
  right: 48px;
  width: 112px;
  height: 112px;
  padding: 16px;
  border-radius: 36px;
  background: var(--white);
}

.hero-qr {
  display: block;
  width: 80px;
  height: 80px;
}

.hero-content {
  position: absolute;
  top: 208px;
  left: 160px;
  right: 160px;
  display: grid;
  grid-template-columns: minmax(0, 1109.5px) minmax(0, 475.5px);
  height: 288px;
}

.hero-nav {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-nav::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 70px;
  background: var(--orange);
}

.hero-nav a {
  display: flex;
  height: 72px;
  align-items: center;
  font-size: 80px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: normal;
  transition: color 160ms ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  color: var(--orange);
}

.hero-intro {
  position: relative;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: normal;
}

.hero-intro p + p {
  margin-top: 24px;
}

.scroll-cue {
  position: absolute;
  top: 242px;
  left: 10px;
  width: 48px;
  height: 48px;
  transform: rotate(19deg);
  background: var(--orange);
}

.scroll-cue span {
  position: absolute;
  left: 18px;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(26deg);
}

.scroll-cue span:first-child { top: 10px; }
.scroll-cue span:last-child { top: 23px; }

.wordmark {
  position: absolute;
  left: 24px;
  bottom: -24px;
  color: var(--orange);
  font-size: 367.276px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -3.67276px;
  white-space: nowrap;
}

.wordmark > span {
  position: static;
  top: auto;
  margin-left: 0;
  font-size: inherit;
  letter-spacing: inherit;
}

.wordmark.brand-wordmark {
  right: 24px;
  bottom: 20px;
  display: flex;
  height: min(23.4vw, 448px);
  flex-direction: column;
  justify-content: flex-end;
  font-size: min(15.7vw, 302px);
  line-height: .72;
  letter-spacing: -3.02px;
  transform: none;
  pointer-events: none;
}

.brand-wordmark .brand-wordmark__line {
  display: block;
  width: 100%;
  height: auto;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.brand-wordmark .brand-wordmark__line--end { text-align: right; }

.work {
  height: auto;
  padding-bottom: 0;
}

.work-panel {
  position: sticky;
  top: 0;
  z-index: var(--stack-z, 1);
  height: 100svh;
  min-height: 760px;
  padding: 24px;
  transform-origin: 50% 0;
}

.project,
.more-projects {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
  scale: var(--stack-scale, 1);
  filter: brightness(var(--stack-brightness, 1));
  transform-origin: 50% 0;
  will-change: scale, filter;
}

.project {
  align-items: center;
  gap: 64px;
  padding: 0 48px 0 136px;
  color: var(--white);
}

.project--dark { background: var(--black); }
.project--orange { background: var(--orange); }

.project-copy {
  position: relative;
  flex: 0 0 calc((100% - 64px) * 0.53);
  height: 432px;
}

.eyebrow,
.section-label {
  font-size: 16px;
  line-height: 16px;
}

.project h2 {
  margin-top: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: normal;
}

.project-diamond,
.person-diamond,
.award > span,
.orange-square {
  display: block;
  background: var(--orange);
  transform: rotate(8deg);
}

.project-diamond {
  position: absolute;
  top: 218px;
  left: 80px;
  width: 18px;
  height: 18px;
  background: var(--white);
  transform: rotate(29deg);
}

.view-project {
  position: absolute;
  top: 208px;
  right: 0;
  font-size: 16px;
  line-height: 16px;
}

.project-meta {
  position: absolute;
  bottom: 0;
  left: 96px;
  right: 0;
  display: grid;
  gap: 24px;
  font-size: 16px;
  line-height: 16px;
}

.project-meta > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.project-meta dd {
  text-align: right;
}

.project-image {
  flex: 1 1 0;
  width: 0;
  max-width: 756px;
  height: auto;
  max-height: 432px;
  object-fit: contain;
}

.work-panel--more {
  padding-bottom: 0;
}

.more-projects {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0 136px;
  color: var(--white);
  background: var(--orange);
}

.more-projects strong {
  position: relative;
  z-index: 1;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: normal;
  transition: opacity 180ms ease, transform 180ms ease;
}

.more-projects__line {
  position: absolute;
  left: 136px;
  right: 136px;
  top: 50%;
  height: 144px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 90px;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease;
}

.more-projects__arrows {
  position: absolute;
  inset: 0 -108px;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 256 256'%3E%3Cpath fill='%23ff3c00' d='M178.83 130.83l-80 80a4 4 0 0 1-5.66-5.66L170.34 128 93.17 50.83a4 4 0 0 1 5.66-5.66l80 80a4 4 0 0 1 0 5.66Z'/%3E%3C/svg%3E");
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: 108px 60px;
  transition: opacity 180ms ease;
}

.more-projects__view {
  position: absolute !important;
  z-index: 2;
  padding: 0 36px;
  color: var(--orange);
  background: var(--white);
  opacity: 0;
  transform: translateY(12px);
}

.more-projects:hover .more-projects__line,
.more-projects:focus-visible .more-projects__line {
  border-color: var(--white);
  background: var(--white);
}

.more-projects:hover .more-projects__arrows,
.more-projects:focus-visible .more-projects__arrows {
  opacity: 1;
  animation: arrow-marquee 3s linear infinite;
}

.more-projects:hover .more-projects__default,
.more-projects:focus-visible .more-projects__default {
  opacity: 0;
  transform: translateY(-12px);
}

.more-projects:hover .more-projects__view,
.more-projects:focus-visible .more-projects__view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes arrow-marquee {
  to { background-position: -108px center; }
}

.about-main {
  height: auto;
  padding: 24px;
}

.about-intro {
  height: 1616px;
}

.section-label {
  display: flex;
  height: 224px;
  align-items: flex-end;
  padding-bottom: 24px;
}

.section-label--indent {
  padding-left: 136px;
  padding-right: 24px;
}

.section-label--edge {
  justify-content: flex-end;
  padding-left: 24px;
  padding-right: 136px;
}

.about-copy-row {
  position: relative;
  height: 432px;
  padding: 96px 136px;
  border-radius: 60px;
  background: var(--white);
}

.about-copy-row--tall {
  height: 480px;
}

.about-copy-row .orange-square {
  position: absolute;
  top: 50%;
  right: 136px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) rotate(6deg);
}

.about-copy-row p {
  width: 1109.5px;
  max-width: calc(100% - 220px);
  margin-left: 0;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: normal;
}

.meet {
  height: auto;
  padding-bottom: 0;
}

.meet-intro {
  height: 168px;
  padding: 96px 136px 0;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: normal;
}

.person {
  position: sticky;
  top: 24px;
  z-index: var(--stack-z, 1);
  display: flex;
  height: calc(100svh - 24px);
  min-height: 760px;
  gap: 48px;
  padding: clamp(96px, 14svh, 160px) 136px clamp(48px, 7svh, 80px) 288px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 60px;
  background: var(--white);
  scale: var(--stack-scale, 1);
  filter: brightness(var(--stack-brightness, 1));
  transform-origin: 50% 0;
  will-change: scale, filter;
}

.portrait {
  flex: 0 0 716.5px;
  height: min(60svh, 649px);
  overflow: hidden;
  border-radius: 60px;
  background: #e7e7e7;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.person:nth-of-type(3) .portrait img { object-position: 50% 47%; }
.person:nth-of-type(4) .portrait img { object-position: 50% 45%; }
.person:nth-of-type(5) .portrait img { object-position: 50% 42%; }

.person-copy {
  position: relative;
  flex: 1;
  height: min(60svh, 649px);
}

.person-diamond {
  position: absolute;
  top: -64px;
  left: 172px;
  width: 12px;
  height: 12px;
}

.person h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: normal;
}

.role {
  margin-top: 24px;
  color: var(--orange);
  font-size: 16px;
  line-height: 16px;
}

.quote {
  margin-top: 24px;
  font-size: 24px;
  font-style: italic;
  line-height: 24px;
  letter-spacing: normal;
}

.socials {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-size: 16px;
  line-height: 16px;
}

.person-count {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  line-height: 16px;
}

.awards {
  height: 2336px;
}

.awards-list {
  display: grid;
  height: 2112px;
  grid-template-rows: repeat(12, 128px);
  align-content: space-between;
  padding: 96px 160px 96px 136px;
  border-radius: 60px;
  background: var(--white);
}

.award {
  position: relative;
  display: grid;
  grid-template-columns: 360px 480px 240px 1fr;
  column-gap: 159.5px;
  height: 128px;
  padding-bottom: 48px;
  border-bottom: 0;
}

.award::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 780.5px;
  height: 1px;
  background: var(--black);
}

.award time {
  font-size: 16px;
  line-height: 16px;
}

.award h3 {
  width: 220px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: normal;
}

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

.award > span {
  width: 16px;
  height: 16px;
  justify-self: end;
}

.services {
  height: auto;
  padding: 96px 24px 0;
  overflow-x: clip;
}

.pricing-plan {
  position: relative;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(72px, 7.1vw, 136px);
  overflow: hidden;
  border-radius: 60px;
}

.pricing-plan--core,
.pricing-plan--custom {
  color: var(--white);
  background: var(--black);
}

.pricing-plan__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(680px, 1.28fr);
  align-items: start;
  gap: clamp(64px, 7vw, 136px);
}

.pricing-plan h2 {
  max-width: 640px;
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(64px, 5.6vw, 108px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.055em;
}

.pricing-periods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-period {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 28px;
}

.pricing-period span {
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.pricing-period strong {
  max-width: 360px;
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(43px, 3.25vw, 64px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.045em;
}

.pricing-plan__audience {
  position: relative;
  z-index: 1;
  width: min(690px, 52%);
  margin-left: auto;
  font-size: clamp(25px, 1.65vw, 32px);
  line-height: 1.05;
}

.services-outcomes {
  padding-top: clamp(152px, 12vw, 230px);
}

.services-outcomes__title {
  width: min(716.5px, calc(100% - 272px));
  margin-left: auto;
  margin-right: 136px;
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(48px, 4.2vw, 80px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.05em;
}

.services-body {
  position: relative;
  display: grid;
  height: auto;
  grid-template-columns: minmax(260px, 716.5px) minmax(0, 716.5px);
  justify-content: space-between;
  column-gap: clamp(56px, 7vw, 136px);
  padding: clamp(72px, 9svh, 112px) 136px 96px;
}

.service-mark {
  position: sticky;
  top: max(0px, calc(50svh - 160px));
  z-index: 2;
  align-self: start;
  display: flex;
  width: 240px;
  height: 320px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 200px;
}

.service-mark__square {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  background: var(--orange);
  transform: translate(-50%, -50%) scale(.944) rotate(146deg);
  animation: mark-turn 12s linear infinite;
}

.service-mark__number {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 240px;
  font-weight: 300;
  line-height: 288px;
}

.service-mark.is-switching .service-mark__number {
  animation: service-number-pop .48s cubic-bezier(.16, 1, .3, 1);
}

@keyframes service-number-pop {
  0% { opacity: .15; transform: translateY(32px) scale(.72); }
  55% { opacity: 1; transform: translateY(-7px) scale(1.08); }
  100% { opacity: 1; transform: none; }
}

@keyframes mark-turn {
  to { transform: translate(-50%, -50%) scale(.944) rotate(506deg); }
}

.service-list {
  width: min(716.5px, 100%);
}

.service {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 760px;
  gap: 24px;
  padding: 96px 0;
  opacity: .3;
  transform: translate3d(72px, 0, 0) scale(.88);
  transform-origin: left center;
  transition: opacity .38s ease, transform .62s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.service.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.service h3 {
  width: min(716.5px, 100%);
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(44px, 3.15vw, 60px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.04em;
  transform: translate3d(0, 14px, 0) scale(.92);
  transform-origin: left top;
  transition: transform .52s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.service p {
  width: min(716.5px, 100%);
  margin-top: 0;
  font-size: clamp(23px, 1.45vw, 28px);
  line-height: 1.08;
  letter-spacing: normal;
  transform: translate3d(0, 18px, 0) scale(.92);
  transform-origin: left top;
  transition: transform .58s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.service.is-active h3 {
  animation: service-heading-pop .66s cubic-bezier(.16, 1, .3, 1) both;
}

.service.is-active p {
  animation: service-body-pop .72s .045s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes service-heading-pop {
  0% { transform: translate3d(0, 20px, 0) scale(.88); }
  58% { transform: translate3d(0, -4px, 0) scale(1.17); }
  100% { transform: translate3d(0, 0, 0) scale(1.12); }
}

@keyframes service-body-pop {
  0% { transform: translate3d(0, 24px, 0) scale(.88); }
  62% { transform: translate3d(0, -3px, 0) scale(1.12); }
  100% { transform: translate3d(0, 0, 0) scale(1.08); }
}

.core-conclusion {
  padding-top: 24px;
}

.core-summary {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
  padding: clamp(64px, 7vw, 136px);
  border-radius: 60px;
  color: var(--white);
  background: var(--orange);
}

.core-summary h2,
.custom-value h3 {
  margin-bottom: 42px;
  font-size: 16px;
  line-height: 1;
}

.core-summary__list,
.technical-details__list,
.custom-value ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.core-summary__list {
  display: grid;
  gap: 10px;
}

.core-summary__list li {
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(36px, 3vw, 58px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.045em;
}

.pricing-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 330px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  border-radius: 999px;
  color: var(--orange);
  background: var(--white);
  font-size: 20px;
  line-height: 1;
  text-align: center;
  transition: color .25s ease, background-color .25s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  color: var(--white);
  background: var(--black);
  transform: translateY(-5px);
}

.pricing-cta:focus-visible,
.technical-details summary:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

.technical-details {
  margin: 24px 0;
  border-radius: 40px;
  background: #f2f2f2;
}

.technical-details summary {
  display: flex;
  min-height: 154px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 40px clamp(40px, 5vw, 96px);
  cursor: pointer;
  list-style: none;
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(26px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
}

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

.technical-details__icon {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
}

.technical-details__icon::before,
.technical-details__icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.technical-details__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.technical-details[open] .technical-details__icon::after { transform: translate(-50%, -50%) rotate(0); }

.technical-details__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
  padding: 8px clamp(40px, 5vw, 96px) 72px;
}

.technical-details__list li,
.custom-value li {
  position: relative;
  padding: 18px 0 18px 22px;
  border-top: 1px solid rgba(0, 0, 0, .16);
  font-size: 19px;
  line-height: 1.12;
}

.technical-details__list li::before,
.custom-value li::before {
  position: absolute;
  left: 0;
  top: 1.38em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
  transform: rotate(12deg);
}

.pricing-plan--custom {
  min-height: 920px;
  margin-top: 24px;
}

.pricing-plan__header--custom {
  grid-template-columns: minmax(380px, .9fr) minmax(560px, 1.1fr);
}

.pricing-plan__custom-price {
  display: block;
  margin-top: 54px;
  color: var(--orange);
  font-family: "Inter", "Inter Tight", Arial, sans-serif;
  font-size: clamp(44px, 3.7vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.045em;
}

.pricing-plan--custom .pricing-plan__audience {
  width: min(590px, 100%);
  margin: 48px 0 0;
}

.custom-value h3 {
  color: var(--orange);
}

.custom-value ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.custom-value li {
  border-color: rgba(255, 255, 255, .22);
  font-size: 20px;
}

.pricing-cta--dark {
  align-self: flex-end;
  color: var(--white);
  background: var(--orange);
}

.pricing-cta--dark:hover,
.pricing-cta--dark:focus-visible {
  color: var(--black);
  background: var(--white);
}

.footer {
  position: relative;
  height: 100vh;
  min-height: 760px;
  padding: 24px 24px 0;
  overflow: hidden;
  background: var(--white);
}

.footer-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  position: absolute;
  top: 160px;
  right: 136px;
  left: 136px;
  display: grid;
  grid-template-columns: 780.5px 378.25px 378.25px;
  gap: 24px;
  height: 192px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid span {
  margin-bottom: 48px;
  color: #e6e6e6;
  font-size: 16px;
  line-height: 16px;
}

.footer-contact a {
  font-size: 48px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: normal;
}

.footer-contact a + a { margin-top: 49.6px; }

.footer-links a {
  font-size: 16px;
  line-height: 12.8px;
}

.footer-links a + a { margin-top: 25.2px; }

.footer-meta {
  position: absolute;
  right: 24px;
  bottom: 500px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 16px;
  line-height: 16px;
}

.footer-meta a { color: var(--orange); }
.footer-meta__made { margin-left: 18px; }

.footer-wordmark {
  left: 24px;
  right: 24px;
  bottom: 0;
  width: auto;
  height: 284.594px;
  color: var(--orange);
  font-size: 350px;
  line-height: 280px;
  letter-spacing: normal;
}

.footer-wordmark.brand-wordmark {
  bottom: 24px;
  height: min(22.9vw, 440px);
  font-size: min(15.4vw, 296px);
  line-height: .72;
  transform: none;
}

@media (max-width: 1750px) {
  .pricing-plan__header {
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 5vw, 88px);
  }

  .pricing-plan__header--custom {
    grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  }

  .services-outcomes__title {
    width: min(716.5px, 58%);
    margin-right: 7vw;
  }

  .services-body {
    grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
    padding-right: 7vw;
    padding-left: 7vw;
  }
}

@media (max-width: 1200px) {
  .hero,
  .about-main,
  .about-intro,
  .awards,
  .services,
  .footer {
    height: auto;
    min-height: 0;
  }

  .hero { height: 100svh; min-height: 760px; }
  .hero-content { left: 7vw; right: 7vw; grid-template-columns: 1.2fr 1fr; }
  .hero-nav a { font-size: clamp(42px, 6vw, 60px); line-height: 1; }
  .wordmark { left: 2vw; bottom: 5vw; font-size: 14vw; letter-spacing: -0.8vw; }
  .wordmark.brand-wordmark,
  .footer-wordmark.brand-wordmark { right: 2vw; bottom: 3vw; height: 31vw; font-size: 16.2vw; line-height: .72; letter-spacing: -.17vw; }
  .footer-meta { bottom: 37vw; }
  .wordmark > span { top: -4.8vw; font-size: 6vw; }
  .work { height: auto; min-height: 0; padding: 12px; }
  .work-panel { height: 100svh; min-height: 740px; padding: 12px 0; }
  .project { padding: 64px; flex-direction: column; justify-content: center; }
  .project-copy { flex-basis: auto; width: 100%; max-width: 760px; }
  .project-image { width: 100%; }
  .about-main { padding: 24px; }
  .about-copy-row,
  .about-copy-row--tall { height: auto; min-height: 430px; }
  .about-copy-row p { width: auto; margin-right: 24%; margin-left: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1; }
  .meet-intro { height: auto; padding-bottom: 72px; }
  .meet { height: auto; min-height: 0; padding-bottom: 0; }
  .person { height: calc(100svh - 24px); min-height: 800px; padding: 100px 8vw; }
  .portrait { flex-basis: 52%; height: min(64svh, 600px); }
  .person-copy { height: min(64svh, 600px); }
  .awards { padding-bottom: 96px; }
  .awards-list { height: auto; padding: 80px 7vw; grid-template-rows: none; }
  .award { grid-template-columns: 1fr 1.5fr 2fr 24px; column-gap: 4vw; min-height: 128px; height: auto; margin-bottom: 36px; }
  .services { padding-bottom: 96px; }
  .pricing-plan { min-height: 0; padding: 72px 7vw; }
  .pricing-plan__header,
  .pricing-plan__header--custom { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .pricing-plan__audience { width: min(690px, 100%); margin-top: 72px; }
  .pricing-plan--custom .pricing-plan__audience { margin-top: 40px; }
  .services-outcomes__title { width: auto; margin-right: 7vw; margin-left: 28%; }
  .services-body { height: auto; grid-template-columns: minmax(0, 28fr) minmax(0, 72fr); padding: clamp(72px, 10svh, 120px) 7vw 0; }
  .service-list { width: auto; }
  .service { height: auto; min-height: 760px; padding-left: 0; opacity: .4; transform: scale(.94); }
  .service.is-active { opacity: 1; transform: scale(1); }
  .service h3,
  .service p { width: auto; }
  .service.is-active h3 { animation-name: service-heading-pop-tablet; }
  .service.is-active p { animation-name: service-body-pop-tablet; }
  .core-summary { min-height: 0; grid-template-columns: minmax(0, 1fr); align-items: start; padding: 72px 7vw; }
  .pricing-cta { justify-self: start; }
  .pricing-plan--custom { min-height: 0; }
  .custom-value { max-width: 820px; }
  .footer { height: 953px; }
  .footer-grid { grid-template-columns: 1fr 0.5fr 0.5fr; }
}

@keyframes service-heading-pop-tablet {
  0% { transform: translate3d(0, 16px, 0) scale(.9); }
  58% { transform: translate3d(0, -3px, 0) scale(1.11); }
  100% { transform: translate3d(0, 0, 0) scale(1.07); }
}

@keyframes service-body-pop-tablet {
  0% { transform: translate3d(0, 18px, 0) scale(.9); }
  62% { transform: translate3d(0, -2px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1.04); }
}

@media (max-width: 720px) {
  .home-link { top: 18px; left: 18px; width: 82px; height: 68px; border-radius: 24px; }
  .home-link__logo { width: 112px; height: 112px; }
  .qr-shell { display: none; }
  .hero-content { top: 120px; display: block; }
  .hero-nav a { font-size: 45px; line-height: 48px; }
  .hero-nav::before { height: 45px; }
  .hero-intro { margin-top: 48px; font-size: 17px; line-height: 18px; }
  .hero-intro br { display: none; }
  .scroll-cue { display: none; }
  .wordmark { bottom: 30px; font-size: 13.7vw; letter-spacing: -0.7vw; }
  .wordmark.brand-wordmark,
  .footer-wordmark.brand-wordmark { right: 18px; bottom: 18px; height: 31vw; font-size: 16.2vw; line-height: .72; letter-spacing: -.17vw; }
  .work { padding-bottom: 12px; }
  .project { min-height: 700px; padding: 40px 24px; border-radius: 30px; }
  .project-copy { height: 360px; }
  .project h2 { font-size: 48px; }
  .project-meta { left: 0; }
  .more-projects { min-height: 500px; border-radius: 30px; }
  .more-projects strong { font-size: 9vw; line-height: 1; }
  .section-label { height: 150px; padding-left: 24px; }
  .about-copy-row,
  .about-copy-row--tall { min-height: 500px; padding: 80px 24px; }
  .about-copy-row .orange-square { top: 48px; right: 24px; }
  .about-copy-row p { margin-right: 0; margin-left: 0; font-size: 32px; }
  .meet-intro { padding: 56px 24px 72px; }
  .meet-intro br { display: none; }
  .meet { padding-bottom: 0; }
  .person { top: 8px; display: block; height: max(100svh, 850px); min-height: 850px; padding: 48px 24px; border-radius: 30px; }
  .portrait { width: 100%; height: 470px; }
  .person-copy { height: 270px; margin-top: 30px; }
  .person h2 { font-size: 45px; line-height: 1; }
  .person-diamond { display: none; }
  .awards-list { padding: 48px 24px; }
  .award { display: grid; grid-template-columns: 1fr 20px; gap: 12px; padding-bottom: 24px; }
  .award::after { width: 100%; }
  .award time,
  .award h3,
  .award p { grid-column: 1; }
  .award h3 { width: auto; }
  .award > span { grid-column: 2; grid-row: 1; }
  .services { padding-right: 12px; padding-left: 12px; }
  .services > .section-label { margin-right: -12px; margin-left: -12px; }
  .pricing-plan { padding: 48px 24px; border-radius: 30px; }
  .pricing-plan h2 { font-size: 48px; line-height: .9; }
  .pricing-periods { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .pricing-period { min-height: 190px; padding: 24px; border-radius: 22px; }
  .pricing-period strong { font-size: 43px; }
  .pricing-plan__audience,
  .pricing-plan--custom .pricing-plan__audience { margin-top: 48px; font-size: 22px; }
  .pricing-plan--core::after,
  .pricing-plan--custom::after { display: none; }
  .services-outcomes { padding-top: 100px; }
  .services-outcomes__title { margin: 0 24px; font-size: 42px; }
  .services-body { display: block; padding: 64px 24px 0; }
  .service-mark { position: static; height: 210px; padding-top: 50px; }
  .service { min-height: max(76svh, 620px); padding: 80px 0; }
  .service h3 { font-size: 36px; line-height: 1.02; }
  .service p { font-size: 20px; line-height: 1.08; }
  .core-summary { gap: 52px; padding: 48px 24px; border-radius: 30px; }
  .core-summary__list li { font-size: 32px; }
  .pricing-cta { width: 100%; min-width: 0; min-height: 68px; font-size: 18px; }
  .technical-details { border-radius: 26px; }
  .technical-details summary { min-height: 124px; padding: 28px 24px; font-size: 24px; }
  .technical-details__icon { flex-basis: 44px; width: 44px; height: 44px; }
  .technical-details__list { grid-template-columns: minmax(0, 1fr); padding: 0 24px 42px; }
  .technical-details__list li { font-size: 17px; }
  .pricing-plan--custom { margin-top: 12px; }
  .pricing-plan__custom-price { margin-top: 38px; font-size: 42px; }
  .custom-value h3 { margin-bottom: 24px; }
  .custom-value ul { grid-template-columns: minmax(0, 1fr); }
  .custom-value li { font-size: 18px; }
  .pricing-cta--dark { align-self: stretch; margin-top: 52px; }
  .footer { height: 850px; padding: 12px 12px 0; }
  .footer-inner { border-radius: 30px 30px 0 0; }
  .footer-grid { top: 80px; right: 36px; left: 36px; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid > div { min-width: 0; }
  .footer-contact { grid-column: 1 / -1; margin-bottom: 50px; }
  .footer-contact a { font-size: 30px; line-height: 1; }
  .footer-contact a:first-of-type { font-size: clamp(16px, 5vw, 24px); white-space: nowrap; }
  .footer-links { margin-top: 40px; }
  .footer-meta { right: 36px; bottom: calc(31vw + 42px); left: 36px; justify-content: flex-end; gap: 4px; font-size: 10px; }
  .footer-meta__made { margin-left: 8px; }
  .more-projects__arrows { inset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .project,
  .more-projects,
  .person { scale: 1 !important; filter: none !important; }
  .service.is-active h3,
  .service.is-active p { animation: none; transform: none; }
}

/* Homepage motion system */
.brand-wordmark__i {
  position: relative;
  display: inline-block;
  font: inherit;
  line-height: inherit;
}

.brand-wordmark__i .scroll-cue {
  top: auto;
  bottom: calc(100% + clamp(12px, 1.25vw, 24px));
  left: 50%;
  display: block;
  width: clamp(34px, 2.5vw, 48px);
  height: clamp(34px, 2.5vw, 48px);
  transform: translateX(-50%) rotate(19deg);
  transform-origin: center;
  box-shadow: 0 0 0 1px rgba(255, 60, 0, .04);
  pointer-events: auto;
}

.brand-wordmark__i .scroll-cue span {
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
}

.brand-wordmark__i .scroll-cue span:first-child { top: 8px; }
.brand-wordmark__i .scroll-cue span:last-child { top: 20px; }

.project-proof {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 32px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .045em;
}

.hero .brand-wordmark {
  opacity: var(--hero-fade, 1);
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  will-change: transform, opacity;
}

.hero-content {
  opacity: var(--hero-fade, 1);
  transform: translate3d(0, var(--hero-content-shift, 0px), 0);
  will-change: transform, opacity;
}

.js .home-link,
.js .qr-shell {
  opacity: 0;
  transform: translateY(-24px) scale(.92);
  transition: opacity .7s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

.js body.is-ready .home-link,
.js body.is-ready .qr-shell {
  opacity: 1;
  transform: none;
}

.js body.is-ready .qr-shell { transition-delay: .08s; }

.js .hero-nav a {
  --nav-enter-delay: 0s;
  opacity: 0;
  transform: translateX(-72px);
  transition:
    color 80ms linear,
    opacity .58s ease var(--nav-enter-delay),
    transform .72s cubic-bezier(.16, 1, .3, 1) var(--nav-enter-delay);
}

.js body.is-ready .hero-nav a { opacity: 1; transform: none; }
.js body.is-ready .hero-nav a:nth-child(1) { --nav-enter-delay: .05s; }
.js body.is-ready .hero-nav a:nth-child(2) { --nav-enter-delay: .1s; }
.js body.is-ready .hero-nav a:nth-child(3) { --nav-enter-delay: .15s; }
.js body.is-ready .hero-nav a:nth-child(4) { --nav-enter-delay: .2s; }

.hero-nav a::after {
  content: "";
  width: 0;
  height: .08em;
  margin-left: .14em;
  background: var(--orange);
  transition: width .14s cubic-bezier(.16, 1, .3, 1);
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after { width: .45em; }

.js .hero-intro p {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

.js body.is-ready .hero-intro p { opacity: 1; transform: none; }
.js body.is-ready .hero-intro p:first-child { transition-delay: .38s; }
.js body.is-ready .hero-intro p:nth-child(2) { transition-delay: .48s; }

.js .hero .brand-wordmark__line {
  opacity: 0;
  transform: translateY(.22em);
  transition: opacity .65s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.js body.is-ready .hero .brand-wordmark__line { opacity: 1; transform: none; }
.js body.is-ready .hero .brand-wordmark__line:first-child { transition-delay: .48s; }
.js body.is-ready .hero .brand-wordmark__line:last-child { transition-delay: .58s; }

.js .hero .scroll-cue { opacity: 0; }

.js body.is-ready .hero .scroll-cue {
  opacity: 1;
  animation: cue-float 2.4s cubic-bezier(.45, 0, .55, 1) 1.35s infinite;
  transition: opacity .5s ease 1.05s;
}

@keyframes cue-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(19deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(24deg); }
}

.js .work-panel .project,
.js .work-panel .more-projects {
  opacity: 0;
  transform: translateY(90px) scale(.965);
  transform-origin: center;
  transition: opacity .8s ease, transform 1.05s cubic-bezier(.16, 1, .3, 1), border-radius .8s ease;
  will-change: transform, opacity;
}

.js .work-panel .project.is-visible,
.js .work-panel .more-projects.is-visible {
  opacity: 1;
  transform: none;
}

.project-copy {
  transform: translate3d(var(--copy-x, 0px), var(--copy-y, 0px), 0);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.project-image {
  transform: translate3d(var(--image-x, 0px), calc(var(--image-y, 0px) + var(--scroll-media, 0px)), 0) scale(1);
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .65s ease;
  will-change: transform;
}

.project:hover .project-image,
.project:focus-visible .project-image {
  transform: translate3d(var(--image-x, 0px), calc(var(--image-y, 0px) + var(--scroll-media, 0px)), 0) scale(1.035);
  filter: drop-shadow(0 30px 26px rgba(0, 0, 0, .24));
}

.js .project:not(.is-visible) .project-copy > div:first-child,
.js .project:not(.is-visible) .project-meta { transform: translateX(-90px); opacity: 0; }
.js .project:not(.is-visible) .view-project { transform: translateX(70px); opacity: 0; }
.js .project:not(.is-visible) .project-diamond { transform: translateY(180px) scale(.1) rotate(160deg); }
.js .project:not(.is-visible) .project-image { transform: translate3d(150px, 45px, 0) scale(.9); opacity: 0; }

.project-copy > div:first-child,
.project-meta,
.view-project,
.project-diamond,
.project-image {
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

.project-copy > div:first-child,
.project-meta,
.view-project,
.project-image { transition-property: transform, opacity, filter; }
.project-diamond { transition-property: transform, opacity; }

.js .about-copy-row {
  opacity: 0;
  transform: translateY(100px) scale(.98);
  transition: opacity .8s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.js .about-copy-row.is-visible { opacity: 1; transform: none; }

.js .about-copy-row .orange-square {
  transition: transform 1.15s cubic-bezier(.16, 1, .3, 1) .12s;
}

.js .about-copy-row:not(.is-visible) .orange-square {
  transform: translateY(360px) scale(.2) rotate(150deg);
}

.js .meet-intro,
.js .footer-grid,
.js .footer-meta,
.js .footer-wordmark {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity .8s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.js .meet-intro.is-visible,
.js .footer-grid.is-visible,
.js .footer-meta.is-visible,
.js .footer-wordmark.is-visible { opacity: 1; transform: none; }

.js .person .portrait {
  opacity: 0;
  transform: translateX(-90px) scale(.93);
  transition: opacity .8s ease, transform 1s cubic-bezier(.16, 1, .3, 1);
}

.js .person .portrait img {
  transform: scale(1.12);
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1);
}

.js .person .person-copy {
  opacity: 0;
  transform: translateX(90px);
  transition: opacity .8s ease .08s, transform 1s cubic-bezier(.16, 1, .3, 1) .08s;
}

.js .person.is-visible .portrait,
.js .person.is-visible .person-copy { opacity: 1; transform: none; }
.js .person.is-visible .portrait img { transform: none; }

.js .award {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .55s ease calc(var(--reveal-order) * 50ms), transform .7s cubic-bezier(.16, 1, .3, 1) calc(var(--reveal-order) * 50ms);
}

.js .award.is-visible { opacity: 1; transform: none; }

.js .service h3,
.js .service p {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity .7s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

.js .service p { transition-delay: .1s; }
.js .service.is-visible h3,
.js .service.is-visible p { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .brand-wordmark__i .scroll-cue {
    bottom: calc(100% + 8px);
    width: 32px;
    height: 32px;
  }
  .brand-wordmark__i .scroll-cue span { width: 9px; height: 9px; }
  .brand-wordmark__i .scroll-cue span:first-child { top: 7px; }
  .brand-wordmark__i .scroll-cue span:last-child { top: 16px; }
  .project-proof { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .home-link,
  .js .qr-shell,
  .js .hero-nav a,
  .js .hero-intro p,
  .js .hero .brand-wordmark__line,
  .js .hero .scroll-cue,
  .js .work-panel .project,
  .js .work-panel .more-projects,
  .js .about-copy-row,
  .js .meet-intro,
  .js .person .portrait,
  .js .person .person-copy,
  .js .award,
  .js .service h3,
  .js .service p,
  .js .footer-grid,
  .js .footer-meta,
  .js .footer-wordmark {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .project-image,
  .project-copy { transform: none !important; transition: none !important; }
}
