* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #08080a;
  --white: #f6f6f3;
  --lime: #c7ff25;
  --blue: #5267ff;
  --purple: #9b4dff;
  --pink: #ff4eb8;
  --grey: #a5a5aa;
  --line: rgba(255,255,255,.16);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}


/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--lime);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.loader-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.loader-logo span {
  font-size: 10px;
  vertical-align: top;
}

.loader-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}


/* ORBS */

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .25;
  z-index: -1;
}

.orb-one {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 15%;
  right: -100px;
}

.orb-two {
  width: 250px;
  height: 250px;
  background: var(--purple);
  bottom: 15%;
  left: -100px;
}

.orb-three {
  width: 200px;
  height: 200px;
  background: var(--pink);
  top: 45%;
  left: 45%;
}


/* NAV */

.nav {
  height: 82px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -.08em;
}

.logo span {
  color: var(--lime);
}

.nav nav {
  display: flex;
  gap: 35px;
}

.nav nav a,
.nav-button {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.nav nav a {
  color: #c8c8cb;
  transition: .3s;
}

.nav nav a:hover {
  color: var(--lime);
}

.nav-button {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 50px;
  transition: .3s;
}

.nav-button b {
  color: var(--lime);
  margin-left: 8px;
}

.nav-button:hover {
  background: var(--lime);
  color: var(--black);
}


/* HERO */

.hero {
  min-height: calc(100vh - 82px);
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: .12em;
  color: #99999f;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 14px;
  font-size: 9px;
  letter-spacing: .08em;
  margin-bottom: 35px;
}

.pulse {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--lime);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(100px, 19vw, 300px);
  line-height: .72;
  letter-spacing: -.11em;
  font-weight: 700;
}

.hero h1 span {
  color: var(--lime);
  display: inline-block;
  transform: rotate(-3deg);
}

.hero-center p {
  max-width: 440px;
  margin: 50px auto 0;
  color: #aaaab0;
  line-height: 1.5;
  font-size: 14px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.hero-scroll,
.hero-year {
  font-size: 9px;
  letter-spacing: .1em;
  color: #8e8e94;
}

.hero-scroll span {
  color: var(--lime);
  margin-left: 8px;
}

.hero-ring {
  width: 100px;
  height: 100px;
  border: 1px solid var(--line);
  border-radius: 50%;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-ring strong {
  color: var(--lime);
  font-size: 25px;
}

.ring-text {
  position: absolute;
  inset: 7px;
  font-size: 7px;
  letter-spacing: .1em;
  animation: spin 12s linear infinite;
}

.hero-year {
  justify-self: end;
  text-align: right;
}

.hero-year b {
  display: block;
  color: var(--white);
  font-size: 17px;
  margin-top: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* MARQUEE */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--lime);
  color: var(--black);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: "Space Grotesk";
  font-size: 28px;
  font-weight: 700;
}

.marquee i {
  font-style: normal;
  font-size: 20px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* COMMON */

.section-tag {
  font-size: 9px;
  letter-spacing: .12em;
  color: #8c8c92;
  font-weight: 700;
}


/* INTRO */

.intro {
  padding: 150px 7vw;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  margin-top: 80px;
}

.intro h2 {
  font-family: "Space Grotesk";
  font-size: clamp(65px, 10vw, 150px);
  line-height: .78;
  letter-spacing: -.09em;
}

.intro h2 span {
  color: var(--blue);
}

.intro h2 em {
  color: var(--lime);
  font-style: normal;
}

.intro-side {
  align-self: end;
}

.intro-side p {
  color: #a6a6ac;
  line-height: 1.6;
  margin-bottom: 35px;
}

.text-link {
  font-size: 10px;
  font-weight: 700;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 7px;
}


/* SERVICES */

.services {
  padding: 100px 7vw 150px;
  background: #111116;
}

.services-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 65px 0 80px;
}

.services-heading h2 {
  font-family: "Space Grotesk";
  font-size: clamp(75px, 12vw, 180px);
  line-height: .75;
  letter-spacing: -.1em;
}

.services-heading h2 span {
  color: var(--lime);
}

.services-heading p {
  max-width: 300px;
  color: #99999f;
  line-height: 1.5;
  font-size: 13px;
}

.service {
  min-height: 130px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1.2fr 1fr 50px;
  align-items: center;
  gap: 20px;
  transition: .35s;
  cursor: pointer;
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service:hover,
.service.active {
  padding: 0 25px;
  background: var(--lime);
  color: var(--black);
}

.service-number {
  font-size: 10px;
  color: var(--lime);
}

.service:hover .service-number,
.service.active .service-number {
  color: var(--black);
}

.service-name {
  font-family: "Space Grotesk";
  font-size: clamp(25px, 4vw, 55px);
  font-weight: 600;
  letter-spacing: -.06em;
}

.service-description {
  color: #99999f;
  font-size: 12px;
  line-height: 1.4;
  max-width: 260px;
}

.service:hover .service-description,
.service.active .service-description {
  color: #222;
}

.service-arrow {
  font-size: 22px;
  text-align: right;
}


/* WORK */

.work {
  padding: 150px 7vw;
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
}

.work h2 {
  font-family: "Space Grotesk";
  font-size: clamp(70px, 11vw, 170px);
  line-height: .75;
  letter-spacing: -.1em;
  margin-top: 60px;
}

.work h2 span {
  color: var(--blue);
}

.work-count {
  color: #88888e;
  font-size: 9px;
  letter-spacing: .1em;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px 25px;
}

.project:nth-child(even) {
  margin-top: 180px;
}

.project-image {
  overflow: hidden;
  position: relative;
  background: #202027;
}

.project-image img {
  height: 550px;
  object-fit: cover;
  filter: saturate(.85);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.project:hover img {
  transform: scale(1.07);
}

.project-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

.project-overlay span {
  padding: 8px 11px;
  background: rgba(8,8,10,.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
}

.project-meta {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.project-meta h3 {
  font-family: "Space Grotesk";
  font-size: 45px;
  line-height: .8;
  letter-spacing: -.07em;
}

.project-meta span,
.project-meta b {
  font-size: 8px;
  color: #88888e;
  letter-spacing: .08em;
}

.project-meta span {
  display: block;
  margin-top: 14px;
}


/* STATEMENT */

.statement {
  min-height: 90vh;
  background: var(--blue);
  color: var(--black);
  padding: 45px 7vw;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statement-small {
  position: absolute;
  top: 45px;
  left: 7vw;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.statement h2 {
  font-family: "Space Grotesk";
  font-size: clamp(85px, 17vw, 260px);
  line-height: .67;
  letter-spacing: -.11em;
}

.statement h2 span {
  color: var(--lime);
}

.statement-star {
  position: absolute;
  right: 8vw;
  bottom: 50px;
  font-size: 80px;
  animation: spin 8s linear infinite;
}


/* PROCESS */

.process {
  padding: 150px 7vw;
}

.process-layout {
  margin-top: 80px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.process-intro h2 {
  font-family: "Space Grotesk";
  font-size: clamp(60px, 8vw, 120px);
  line-height: .78;
  letter-spacing: -.09em;
}

.process-intro h2 span {
  color: var(--pink);
}

.process-intro p {
  margin-top: 50px;
  max-width: 330px;
  color: #99999f;
  line-height: 1.5;
  font-size: 13px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.process-item > span {
  color: var(--lime);
  font-size: 10px;
}

.process-item h3 {
  font-family: "Space Grotesk";
  font-size: 35px;
  letter-spacing: -.05em;
}

.process-item p {
  color: #85858b;
  font-size: 12px;
  margin-top: 8px;
}


/* VISUAL */

.visual {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.visual-image,
.visual-image img {
  width: 100%;
  height: 100%;
}

.visual-image img {
  object-fit: cover;
  filter: saturate(.75);
  transition: transform 1.2s ease;
}

.visual:hover .visual-image img {
  transform: scale(1.04);
}

.visual-label {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.visual-label span {
  background: rgba(8,8,10,.75);
  padding: 10px 14px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.visual-label span:last-child {
  color: var(--lime);
}


/* CONTACT */

.contact {
  min-height: 90vh;
  padding: 30px 7vw;
  background: var(--lime);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-top,
.contact-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.contact-main {
  position: relative;
}

.contact-small {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 35px;
}

.contact h2 {
  font-family: "Space Grotesk";
  font-size: clamp(100px, 18vw, 280px);
  line-height: .68;
  letter-spacing: -.12em;
}

.contact h2 span {
  color: var(--blue);
}

.contact-button {
  position: absolute;
  right: 4vw;
  bottom: 0;
  width: 160px;
  height: 160px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  transition: .4s;
}

.contact-button strong {
  margin-left: 8px;
  font-size: 17px;
}

.contact-button:hover {
  background: var(--black);
  color: var(--lime);
  transform: rotate(10deg);
}

.contact-bottom p {
  max-width: 330px;
  line-height: 1.5;
}


/* FOOTER */

footer {
  padding: 70px 7vw 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 70px;
}

.footer-logo {
  font-family: "Space Grotesk";
  font-size: clamp(100px, 20vw, 300px);
  line-height: .65;
  letter-spacing: -.12em;
  font-weight: 700;
}

.footer-logo span {
  color: var(--lime);
}

.footer-logo sup {
  font-size: 12px;
}

.footer-slogan {
  text-align: right;
  color: #88888e;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .1em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-links > div {
  padding: 25px 15px 25px 0;
  border-right: 1px solid var(--line);
}

.footer-links > div:last-child {
  border-right: 0;
}

.footer-links span {
  color: #77777d;
  font-size: 8px;
  letter-spacing: .1em;
}

.footer-links p {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #77777d;
  font-size: 8px;
  letter-spacing: .1em;
}

.back-top {
  cursor: pointer;
}


/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .nav {
    grid-template-columns: 1fr 1fr;
  }

  .nav nav {
    display: none;
  }

  .intro-content,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .services-heading {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project:nth-child(even) {
    margin-top: 0;
  }

  .project-image img {
    height: 500px;
  }

  .contact-button {
    width: 130px;
    height: 130px;
  }

}


@media (max-width: 600px) {

  .nav {
    padding: 0 16px;
  }

  .nav-button {
    font-size: 8px;
    padding: 11px 13px;
  }

  .hero {
    padding: 20px 16px;
  }

  .hero-top span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: 26vw;
  }

  .hero-center p {
    margin-top: 35px;
    font-size: 12px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ring {
    display: none;
  }

  .hero-year {
    grid-column: 2;
  }

  .intro,
  .services,
  .work,
  .process,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro-content {
    margin-top: 50px;
  }

  .intro h2 {
    font-size: 18vw;
  }

  .services {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .services-heading h2 {
    font-size: 21vw;
  }

  .service {
    grid-template-columns: 35px 1fr 30px;
    min-height: 115px;
  }

  .service-description {
    display: none;
  }

  .service-name {
    font-size: 7vw;
  }

  .work {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .work-head {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }

  .work h2 {
    font-size: 20vw;
  }

  .project-image img {
    height: 400px;
  }

  .project-meta h3 {
    font-size: 11vw;
  }

  .statement {
    min-height: 70vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .statement h2 {
    font-size: 20vw;
  }

  .process {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .process-layout {
    margin-top: 50px;
  }

  .process-intro h2 {
    font-size: 17vw;
  }

  .visual {
    height: 65vh;
  }

  .contact {
    min-height: 75vh;
  }

  .contact h2 {
    font-size: 25vw;
  }

  .contact-button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 60px;
    width: 120px;
    height: 120px;
  }

  .contact-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }

  .footer-logo {
    font-size: 27vw;
  }

  .footer-slogan {
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:nth-child(2) {
    border-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

}