:root {
  color-scheme: dark;
  --black: #050505;
  --graphite: #101010;
  --graphite-2: #171717;
  --ink: #f4f4ef;
  --muted: #c7c7be;
  --soft: #8f969b;
  --line: rgba(244, 244, 239, 0.16);
  --accent: #aeb8c2;
  --paper: #f4f2ea;
  --paper-ink: #111111;
  --max: 1180px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

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

.site-video,
.site-video-scrim,
.site-grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-video {
  z-index: 0;
  object-fit: cover;
  background: var(--black);
}

.site-video-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.44) 48%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.32) 52%, rgba(5, 5, 5, 0.62) 100%);
}

.site-grain {
  z-index: 2;
  opacity: 0.15;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 11px);
  mix-blend-mode: overlay;
}

.site-header,
main {
  position: relative;
  z-index: 3;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 18px 42px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0));
}

.brand {
  display: flex;
  align-items: center;
  width: 118px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: rgba(244, 244, 239, 0.74);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.button {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  border: 1px solid rgba(244, 244, 239, 0.34);
  border-radius: 4px;
  padding: 10px 16px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(244, 244, 239, 0.76);
  background: rgba(244, 244, 239, 0.08);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: calc(var(--header-height) + 56px) 42px 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero-scrim,
.film-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.12) 46%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.02) 45%, rgba(5, 5, 5, 0.5) 100%);
}

.film-grain {
  z-index: -1;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 11px);
  mix-blend-mode: overlay;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.96;
}

h2 {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 760;
  line-height: 1.04;
}

h3 {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.22;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(244, 244, 239, 0.82);
  font-size: 1.09rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(244, 244, 239, 0.38);
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #070707;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
}

.button-secondary {
  color: var(--ink);
  background: rgba(244, 244, 239, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(244, 244, 239, 0.8);
  background: rgba(244, 244, 239, 0.1);
}

.statement {
  padding: 36px 42px 44px;
  background: rgba(5, 5, 5, 0.56);
  backdrop-filter: blur(5px);
}

.statement-inner {
  display: flex;
  width: min(var(--max), 100%);
  margin: 0 auto;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  color: rgba(244, 244, 239, 0.86);
  font-size: 1.35rem;
  font-weight: 700;
}

.statement-inner p {
  margin-bottom: 0;
}

.section {
  padding: 112px 42px;
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.38), rgba(5, 5, 5, 0.42));
  backdrop-filter: blur(2px);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.split > * {
  width: auto;
}

.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy p:last-child,
.philosophy p:last-child,
.final-cta p:last-of-type {
  margin-bottom: 0;
}

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

.section-light .section-kicker {
  color: #67707a;
}

.section-light h2,
.section-light h3 {
  color: var(--paper-ink);
}

.light-heading {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  margin-bottom: 68px;
}

.section-logo {
  display: block;
  width: 420px;
  height: auto;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  border-left: 1px solid rgba(17, 17, 17, 0.18);
}

.client-grid span {
  min-height: 110px;
  border-right: 1px solid rgba(17, 17, 17, 0.18);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  padding: 20px;
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading .section-kicker {
  margin-bottom: 8px;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-list article {
  min-height: 234px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.work-list p,
.approach-list p,
.philosophy p,
.distribution-copy p,
.final-cta p {
  color: var(--muted);
}

.distribution {
  overflow: hidden;
}

.distribution-copy {
  max-width: 1220px;
  text-align: center;
}

.distribution-copy h2 {
  width: min(1220px, 100%);
  margin-bottom: 30px;
  font-size: 2.48rem;
  white-space: nowrap;
}

.distribution-copy p {
  margin-bottom: 20px;
  font-size: 1.04rem;
}

.distribution-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(199, 199, 190, 0.72) !important;
  font-size: 0.86rem !important;
}

.logo-marquee {
  position: relative;
  width: 100%;
  margin-top: 74px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 244, 239, 0.05);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 220px);
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 28px;
  animation: logo-scroll 42s linear infinite;
}

.logo-track img {
  width: 312px;
  height: 156px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 12px 16px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

.approach {
  background: rgba(5, 5, 5, 0.62);
}

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

.approach-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list span {
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 800;
}

.approach-list h3,
.work-list h3 {
  margin-bottom: 12px;
}

.philosophy {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.66), rgba(8, 8, 8, 0.62));
}

.philosophy h2,
.philosophy p {
  max-width: 900px;
}

.philosophy h2 {
  margin-bottom: 26px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 122px 42px 130px;
  text-align: center;
  border-top: 1px solid rgba(244, 244, 239, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #121212;
}

.final-cta > *:not(.film-grain) {
  width: min(880px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.final-cta p {
  max-width: 760px;
  font-size: 1.05rem;
}

.final-cta p:last-of-type {
  margin-bottom: 48px;
}

.final-cta .button {
  width: auto;
  min-width: 190px;
  min-height: 42px;
  padding: 10px 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    row-gap: 12px;
    padding: 16px 24px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 20px;
  }

  .header-cta {
    grid-column: 2;
  }

  .hero {
    padding: 150px 24px 62px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section,
  .statement,
  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split,
  .section-heading,
  .light-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .distribution-copy h2 {
    font-size: 2.35rem;
  }

  .section-logo {
    width: 280px;
  }

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

  .logo-track img {
    width: 230px;
    height: 116px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    position: absolute;
    min-height: auto;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 96px;
    height: 48px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 128px;
    padding-bottom: 50px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.6) 44%, rgba(5, 5, 5, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.36));
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

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

  .hero-lede,
  .section-copy,
  .final-cta p {
    font-size: 1rem;
  }

  .statement-inner {
    display: grid;
    gap: 8px;
    font-size: 1.08rem;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .client-grid,
  .work-list {
    grid-template-columns: 1fr;
  }

  .distribution-copy {
    text-align: left;
  }

  .logo-marquee {
    margin-top: 48px;
  }

  .logo-track {
    gap: 20px;
    padding: 20px;
    animation-duration: 34s;
  }

  .logo-track img {
    width: 176px;
    height: 92px;
    padding: 8px 10px;
  }

  .client-grid span,
  .work-list article {
    min-height: auto;
  }

  .approach-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .logo-track {
    transform: translateX(0);
  }
}
