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

:root {
  --bg: #e4e4e0;
  --bg2: #d8d8d3;
  --bg3: #cecec9;
  --ink: #111111;
  --ink-mid: #555555;
  --ink-soft: #999999;
  --ink-ghost: rgba(17, 17, 17, 0.055);
  --lime: #7fff00;
  --lime-dark: #4db800;
  --white: #f5f5f2;
  --border: rgba(17, 17, 17, 0.12);
  --f-d: 'Barlow Condensed', sans-serif;
  --f-b: 'Barlow', sans-serif;
  --f-m: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-b);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--ink);
}

/* CURSOR */
.cur {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#cDot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

#cRing {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: 0.45;
  transition: width .35s, height .35s, opacity .35s;
}

#cRing.big {
  width: 58px;
  height: 58px;
  opacity: 0.18;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  transition: background .4s, backdrop-filter .4s;
}

nav.scrolled {
  background: rgba(228, 228, 224, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.n-logo {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.n-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.n-logo sup {
  font-size: 0.45rem;
  font-family: var(--f-m);
  letter-spacing: 0.1em;
}

.n-links {
  display: flex;
  gap: 36px;
}

.n-links a {
  font-family: var(--f-m);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.n-links a:hover {
  color: var(--ink);
}

.n-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.n-dot {
  width: 6px;
  height: 6px;
  background: var(--lime-dark);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.15
  }
}

.n-cta {
  font-family: var(--f-m);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color .2s;
}

.n-cta:hover {
  color: var(--ink);
}

/* HERO */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.04;
}

.hero-overlay {
  display: none;
}

/* Ghost BG */
.h-ghost {
  position: absolute;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 42vw;
  line-height: 0.85;
  color: var(--ink-ghost);
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

/* Pixel blocks */
.px {
  position: absolute;
  background: rgba(17, 17, 17, 0.055);
  pointer-events: none;
}

/* Dot cluster */
.dot-cluster {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.dc-row {
  display: flex;
  gap: 7px;
}

.dc-dot {
  width: 5px;
  height: 5px;
  background: rgba(17, 17, 17, 0.2);
  border-radius: 50%;
}

/* Hero Left */
.h-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 36px 52px;
  position: relative;
  z-index: 2;
}

.h-tag {
  font-family: var(--f-m);
  font-size: 0.68rem;
  color: var(--ink-mid);
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.h-title {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.h-sub {
  font-family: var(--f-d);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 36px;
}

.h-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.badge {
  font-family: var(--f-m);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 5px 10px;
  color: var(--ink-mid);
}

.h-fine {
  font-family: var(--f-m);
  font-size: 0.58rem;
  color: var(--ink-soft);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero Right */
.h-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 36px 52px;
  position: relative;
  z-index: 2;
}

.h-ver {
  font-family: var(--f-m);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.8;
}

.h-menu {
  display: flex;
  flex-direction: column;
}

.h-mi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  cursor: pointer;
  transition: padding-left .25s;
}

.h-mi:first-child {
  border-top: 1px solid var(--border);
}

.h-mi:hover {
  padding-left: 8px;
}

.hmi-n {
  font-family: var(--f-d);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}

.h-mi:hover .hmi-n,
.hmi-n.on {
  color: var(--ink);
}

.hmi-p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.h-bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.h-small {
  font-family: var(--f-m);
  font-size: 0.56rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
  max-width: 200px;
  text-align: right;
}

.scroll-arr {
  font-size: 1.1rem;
  color: var(--ink-mid);
  animation: arr 2.2s ease-in-out infinite;
}

@keyframes arr {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

/* MARQUEE */
.mq {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--ink);
  padding: 13px 0;
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 22s linear infinite;
}

.mi {
  font-family: var(--f-d);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 28px;
  flex-shrink: 0;
}

.mi.a {
  color: var(--lime);
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

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

/* SERVICES */
.s-services {
  padding: 120px 36px;
  position: relative;
  overflow: hidden;
}

.s-ghost-bg {
  position: absolute;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 20vw;
  color: var(--ink-ghost);
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.s-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.s-head-r {
  max-width: 300px;
}

.s-head-r p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

.ltag {
  font-family: var(--f-m);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ltag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--ink-soft);
  display: block;
}

.btitle {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
}

.svc-list {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.svc-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr 60px;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s, padding-left .25s;
  cursor: default;
}

.svc-row:hover {
  background: rgba(17, 17, 17, 0.03);
  padding-left: 10px;
}

.svc-n {
  font-family: var(--f-m);
  font-size: 0.6rem;
  color: var(--ink-soft);
}

.svc-name {
  font-family: var(--f-d);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.svc-d {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.6;
  font-weight: 300;
}

.svc-arr {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: right;
  transition: transform .25s, color .25s;
}

.svc-row:hover .svc-arr {
  transform: translateX(5px);
  color: var(--ink);
}

/* PROCESS */
.s-process {
  background: var(--ink);
  color: var(--white);
  padding: 120px 36px;
  position: relative;
  overflow: hidden;
}

.p-ghost {
  position: absolute;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 28vw;
  color: rgba(255, 255, 255, 0.025);
  bottom: -8%;
  right: -2%;
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

.p-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.p-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.p-head .btitle {
  color: var(--white);
}

.p-head .ltag {
  color: rgba(255, 255, 255, 0.28);
}

.p-head .ltag::before {
  background: rgba(255, 255, 255, 0.28);
}

.p-head p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  font-weight: 300;
}

.p-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.p-step {
  background: var(--ink);
  padding: 40px 28px;
  position: relative;
}

.ps-num {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ps-line {
  width: 22px;
  height: 1px;
  background: var(--lime);
  margin-bottom: 26px;
}

.ps-title {
  font-family: var(--f-d);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}

.ps-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.78;
}

/* BOXLY */
.s-boxly {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bx-vis {
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.bx-bg-txt {
  position: absolute;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 22vw;
  color: rgba(127, 255, 0, 0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bx-pulse {
  position: absolute;
  border: 1px solid rgba(127, 255, 0, 0.07);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

.bxp1 {
  width: 180px;
  height: 180px;
}

.bxp2 {
  width: 280px;
  height: 280px;
  animation-delay: 1.2s;
}

.bxp3 {
  width: 380px;
  height: 380px;
  animation-delay: 2.4s;
}

@keyframes pulse {
  0% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(1)
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2)
  }
}

.bx-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bx-logo {
  line-height: 0;
}

.bx-logo img {
  width: clamp(200px, 42vw, 360px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.bx-info {
  background: var(--bg2);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bx-lbl {
  font-family: var(--f-m);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bx-live {
  width: 6px;
  height: 6px;
  background: var(--lime-dark);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}

.bx-title {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 22px;
}

.bx-desc {
  font-size: 0.87rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 380px;
}

.bx-link {
  font-family: var(--f-m);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap .3s;
}

.bx-link:hover {
  gap: 18px;
}

.bx-corner {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-family: var(--f-m);
  font-size: 0.54rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
}

/* WHY */
.s-why {
  padding: 120px 36px;
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 110px;
}

.why-left .btitle {
  margin-bottom: 22px;
}

.why-left p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
}

.why-items {
  border-top: 1px solid var(--border);
}

.w-item {
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
}

.w-num {
  font-family: var(--f-m);
  font-size: 0.58rem;
  color: var(--ink-soft);
  padding-top: 4px;
}

.w-title {
  font-family: var(--f-d);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.w-desc {
  font-size: 0.84rem;
  color: var(--ink-mid);
  line-height: 1.78;
  font-weight: 300;
}

/* CTA */
.s-cta {
  padding: 0 36px 120px;
}

.cta-block {
  background: var(--ink);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-ghost {
  position: absolute;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 18vw;
  color: rgba(255, 255, 255, 0.025);
  right: -2%;
  bottom: -25%;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.cta-lbl {
  font-family: var(--f-m);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-lbl::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--lime);
  display: block;
}

.cta-t {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-t em {
  font-style: normal;
  color: var(--lime);
}

.cta-r {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.btn-main {
  font-family: var(--f-d);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 16px 36px;
  text-decoration: none;
  transition: opacity .25s;
  display: inline-block;
  white-space: nowrap;
}

.btn-main:hover {
  opacity: 0.82;
}

.btn-ghost {
  font-family: var(--f-m);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.35);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 36px 32px;
}

.ft {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.fb-name {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fb-name sup {
  font-size: 0.42rem;
  font-family: var(--f-m);
}

.fb-tag {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

.fc h5 {
  font-family: var(--f-m);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc ul li a {
  font-size: 0.82rem;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color .2s;
}

.fc ul li a:hover {
  color: var(--ink);
}

.fb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.fb-copy {
  font-family: var(--f-m);
  font-size: 0.56rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fb-loc {
  font-family: var(--f-m);
  font-size: 0.58rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fb-loc::before {
  content: '●';
  font-size: 0.38rem;
  color: var(--lime-dark);
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 18px 20px;
  }

  .n-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }

  .h-right {
    display: none;
  }

  .h-left {
    padding: 130px 20px 56px;
  }

  .h-ghost {
    font-size: 65vw;
    right: -12%;
  }

  .s-services,
  .s-why,
  .s-cta,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .s-process {
    padding: 80px 20px;
  }

  .s-head {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .svc-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .svc-d,
  .svc-arr {
    display: none;
  }

  .p-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-steps {
    grid-template-columns: 1fr 1fr;
  }

  .s-boxly {
    grid-template-columns: 1fr;
  }

  .bx-vis {
    min-height: 300px;
  }

  .bx-info {
    padding: 48px 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-left {
    position: static;
  }

  .cta-block {
    grid-template-columns: 1fr;
    padding: 48px 28px;
  }

  .cta-r {
    align-items: flex-start;
  }

  .ft {
    grid-template-columns: 1fr 1fr;
  }

  .s-cta {
    padding-bottom: 80px;
  }
}