html, body { cursor: none !important; }
/* This is an arbitrary CSS string added to the bundle */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  margin: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --black: #000;
  --white: #fff;
  --text-gray: #AAAAAA;

  --spacing-normal: 3rem;
  --spacing-gap: 2rem;
  --spacing-medium: 6rem;
  --spacing-large: 10rem;

  --border-radius: 20px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* padding: 50px 0 100px; */
}

.intro,
.page,
.site-header,
.main-header {
  padding: 0 1rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 2.5rem;
}

.page-wrapper{
  max-width: 1400px;
  margin: 0 auto;
}

/* .site-nav {}

.site-nav a {
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
} */

.page,
.section {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  padding: 0 1rem;
}

/* Type */

p.text-large {
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-gray);
}

h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 0.7rem;
}

.xtra-space {
  margin-bottom: 3rem;
}

h2.giant {
  font-size: 80px;
  line-height: 1.1;
  grid-column: span 4;
}

h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.button-nav a {
  margin-right: 2rem;
}

.button-underline {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid #fff;
  /* margin-right: 2rem; */
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

.button-underline:hover {
  border-bottom: 1px solid #000;
  color: #D4FF00;
}

.span-4 {
  grid-column: span 4;
}

.context h3.mono {
  font-family: "Space Grotesk", Courier, monospace;
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  line-height: 34px;
  margin-top: 3rem;
}

.context h3,
.focus h3 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}

p,
ul,
ol,
a {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  color: var(--text-gray);
}

li {
  margin-bottom: 0.8rem;
}

ul.chips li {
  margin-bottom: 0.5rem;
  display: inline-flex;
  padding: 6px 8px;
  background: #111111;
  margin: 0 3px 3px 0;
  line-height: 1em;
  font-weight: 300;
  font-family: 'Inter';
  font-size: 14px;
  color: #bebebe;
  transition: all 0.1s ease;
}

ul.chips li:hover {
  outline: 1px solid #f4ff00;
  color: #f4ff00;
  background: transparent;
  border-radius: 3px;
}

p,
ul,
ol {
  margin: 0 0 2rem;
}

.main-header {
  height: 50vh;
  margin-bottom: var(--spacing-large);
  display: block;
  display: flex;
  align-items: center;
}

.main-header h1 {
  max-width: 700px;
}

.main-header p {
  max-width: 600px;
  color: var(--text-gray);
}

.intro {
  margin-bottom: var(--spacing-normal);

}

.intro h1 {
  max-width: 1000px;
}

.intro p {
  font-size: 24px;
  line-height: 1.3;
}

.intro .hero {
  margin-bottom: var(--spacing-normal);
  border-radius: var(--border-radius);
}

.work {
  grid-column: span 12;
  display: grid;
  gap: var(--spacing-gap);
  grid-template-columns: repeat(1fr, 1fr);
}

.work .work-info {
  display: grid;
  grid-template-columns: 1fr;
  /* align-items: end; */
  /* margin-top: 1rem; */
  /* gap: 2rem; */
}

.work-info a {
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.work-info .soon {
  margin-top: 1rem;
  display: block;
  font-style: italic;
  color: #666;
  font-size: 0.8rem;
}

.work-info p {
  margin: 0;
}

.work-item img {
  /* border-radius: var(--border-radius); */
}

.work .work-stats {
  list-style: none;
  margin: 0;
  font-family: "Space Grotesk", Courier, monospace;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.work .work-stats li {
  margin: 0 0 0.5rem 0;
  display: flex;
  ;
}

.work .work-stats strong {
  color: var(--white);
  width: 50px;
}

.focus h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  color: var(--white);
  margin-top: 3rem;
}

.focus {
  color: var(--text-gray);
}

.focus.small-bottom {
  margin-bottom: 0;
}

.focus h2:first-of-type {
  margin-top: 0;
}

.focus,
.context {
  /* margin-bottom: 1rem; */
}

.context ul,
.focus ul {
  list-style: none;
  padding: 0;
  color: var(--text-gray);
}

.focus img {
  border-radius: var(--border-radius);
}

.result {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.result h3 {
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -5%;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.result p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.3;
  margin: 0 0 0 1rem;
  max-width: 200px;
}

.content img {
  border-radius: 20px;
}

.headline-full {
  grid-column: span 12;
}
.headline-full p {
  margin-bottom: 0;
}

.work-info {
   margin-top: 1rem;
}


@media (min-width: 768px) {
  .main-header {
    height: 90vh;
  }
  h1 {
    font-size: 80px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .page,
  .section {
    display: grid;
    gap: var(--spacing-gap);
    grid-template-columns: repeat(12, 1fr);
    padding: 0 3rem;
  }

  .context h3.mono {
    margin-top: 0;
  }

  .section {
    margin-bottom: var(--spacing-medium);
  }

  .section.spacing-large {
    margin-bottom: var(--spacing-large);
  }

  .stats-bar,
  .col-3 {
    display: grid;
    gap: var(--spacing-gap);
    grid-template-columns: repeat(3, 1fr);
  }

  .focus,
  .context {
    margin-bottom: var(--spacing-medium);
  }

  .focus {
    grid-column: 4 / span 12;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }

  .focus>* {
    grid-column: 1 / span 4;
  }

  .focus .stats-bar,
  .focus .col-3 {
    grid-column: 1 / span 8;
  }

  .focus.bleed-right>* {
    grid-column: 1 / span 8;
  }

  .context {
    grid-column: 1 / span 3;
  }

  .work {
    grid-column: span 12;
    display: grid;
    gap: var(--spacing-gap);
    grid-template-columns: repeat(2, 1fr);
  }

  .work .work-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* align-items: end; */
    gap: 2rem;
  }

  .work-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
  }

  .context h3 {
    margin-bottom: 1rem;
  }

  .focus h3 {
    margin-bottom: 0.7rem;
  }
  .intro,
  .page,
  .site-header,
  .main-header {
    padding: 0 3rem;
  }

  margin-top: 0;
}

.context h3.mono {
  margin-bottom: 0;
}


/* motion */


.hero-title {
  /* overflow: hidden; */
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(15px);
}

.main-header_container p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.main-header_container p {
  visibility: hidden;
}

.main-header_container p.is-ready {
  visibility: visible;
}

/* Prevent flash: keep hidden until ScrollTrigger fires */
h3.mono {
  visibility: hidden;
}

h3.mono.is-ready {
  visibility: visible;
}

/* Helps smooth GPU rendering */
.reveal-on-scroll {
  will-change: transform, opacity;
}

.site-header {
  opacity: 0;
  transform: translateY(-20px);
  will-change: transform, opacity;
}


html,
body {
  cursor: none;
}
html,
body {
  cursor: none;
}

/* Outer ring */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform, border-color, border-width;
  mix-blend-mode: difference;
}

/* Inner dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform;
  mix-blend-mode: difference;
}

/* Cursor chip label */
.cursor-chip {
  position: fixed;
  top: 0;
  left: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #d4ff00;
  color: #000;
  font-family: "Space Grotesk", Courier, monospace;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

@media (pointer: coarse) {
  .cursor,
  .cursor-dot,
  .cursor-chip {
    display: none;
  }

  html,
  body {
    cursor: auto;
  }
}

/* Video hover */
.work-item {
  display: flex;
  flex-direction: column;
}

.work-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
}

/* media layers */
.work-video,
.work-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-video {
  z-index: 1;
  pointer-events: none;
}


.work-poster {
  z-index: 2;
  opacity: 1;
  transition: opacity 300ms ease;
}

.work-poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.work-title {
  max-width: 40rem;
}

.work-stats {
  margin:0;
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(212, 255, 0, 0.86);
  color: #000;
}

::-moz-selection {
  background: rgba(212, 255, 0, 0.5);
  color: #000;
}



.chips li {
  opacity: 0;
  transform: translateX(-20px);
  will-change: opacity, transform;
}


.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 20;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 300;
  color: var(--white);
  font-size: 1rem;
  border-bottom: 1px solid black;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: #D4FF00;
  border-bottom: 1px solid #D4FF00;
}

.nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10003;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle span:nth-child(1) {
  top: 11px;
}

.nav-toggle span:nth-child(2) {
  top: 19px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0 auto 0 calc((100% - 100vw) / 2);
    width: 100vw;
    height: 100dvh;
    top: -40px;
    padding: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 10002;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0s;
  }

  .site-nav a {
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

html {
  scroll-behavior: auto;
}


.logo img {
  width:38px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
}
