:root {
  --c1: rgba(255, 255, 255, .75);
  --c2: rgba(255, 255, 255, .55);
  --c3: rgba(255, 255, 255, .7);
  --c4: rgba(255, 255, 255, .05);
  --c5: rgba(255, 255, 255, .4);
  --c6: rgba(96, 165, 250, .3);
  --c7: rgba(255, 255, 255, .06);
  --c8: rgba(255, 255, 255, .85);
  --c9: rgba(255, 255, 255, .04);
  --bg: #0a0a0a;
  --blu: #60a5fa;
  --pur: #a78bfa;
  --pnk: #f472b6;
  --ind: #818cf8;
  --g1: linear-gradient(135deg, var(--blu), var(--ind));
  --g2: linear-gradient(135deg, var(--blu), var(--pur));
  --g3: linear-gradient(90deg, var(--blu), var(--pur), var(--pnk));
  --r16: 16px;
  --r40: 40px;
  --bf: blur(40px) saturate(120%);
  --ls5: 5px;
  --fs13: 13px
}

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

html.lenis, html.lenis body {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important
}

::selection {
  background: rgba(255, 255, 255, .15)
}

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: default
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--c5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width .3s, height .3s, border-color .3s, transform .3s, background .3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference
}

.cursor.hover {
  width: 60px;
  height: 60px;
  background: var(--c7);
  border-color: var(--c8)
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100
}

nav {
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 20, .5);
  backdrop-filter: saturate(150%) blur(60px);
  -webkit-backdrop-filter: saturate(150%) blur(60px);
  border-bottom: 1px solid var(--c4)
}

.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px
}

.nav-r {
  display: flex;
  gap: 32px;
  align-items: center
}

.nav-r a {
  color: var(--c1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .5px;
  transition: color .3s
}

.nav-r a:hover, .nav-r a.active {
  color: #fff
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .2) !important;
  padding: 10px 24px;
  border-radius: var(--r40);
  color: var(--c8) !important;
  transition: all .3s !important;
  font-size: 14px !important
}

.nav-cta:hover {
  background: #fff !important;
  color: var(--bg) !important
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger.active span:nth-child(2) {
  opacity: 0
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 24px 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  color: var(--c8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid var(--c7);
  transition: color .3s
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: #fff
}

.hero {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  will-change: transform
}

.orb1 {
  width: 600px;
  height: 600px;
  background: var(--blu);
  top: -10%;
  right: -5%;
  opacity: .2
}

.orb2 {
  width: 500px;
  height: 500px;
  background: var(--pur);
  bottom: -10%;
  left: -5%;
  opacity: .18
}

.orb3 {
  width: 400px;
  height: 400px;
  background: var(--pnk);
  bottom: 20%;
  right: 20%;
  opacity: .15
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/assets/images/hero.webp') center/cover no-repeat;
  opacity: .25
}

.about-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/assets/images/about.webp') center/cover no-repeat;
  opacity: .3;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, .6), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, .6), transparent)
}

.process-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/process.webp') center/cover no-repeat;
  opacity: .1
}

.contact-section {
  position: relative;
  overflow: hidden
}

.contact-orbs {
  position: absolute;
  inset: 0;
  z-index: 0
}

.contact-orb1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--blu);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  top: -15%;
  left: -10%
}

.contact-orb2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--pur);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  bottom: -10%;
  right: -5%
}

.contact-orb3 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--pnk);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .1;
  top: 30%;
  right: 20%
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero-tag {
  font-size: 14px;
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 28px;
  overflow: hidden
}

.hero-tag span {
  display: inline-block
}

.hero h1 {
  font-size: clamp(40px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%)
}

.hero h1 .line .accent {
  background: linear-gradient(135deg, var(--blu), var(--ind), #c084fc, var(--pnk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.3)
}

.hero-sub {
  font-size: 18px;
  color: var(--c1);
  max-width: 500px;
  margin: 28px auto 0;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  justify-content: center
}

.btn-hero {
  padding: 16px 36px;
  border-radius: var(--r40);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .4s
}

.btn-fill {
  background: var(--g1);
  color: #fff;
  font-weight: 600
}

.btn-fill:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
  box-shadow: 0 8px 32px var(--c6)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--c8);
  background: rgba(255, 255, 255, .03)
}

.btn-ghost:hover {
  border-color: rgba(96, 165, 250, .5);
  color: #fff;
  background: rgba(96, 165, 250, .08)
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0
}

.scroll-line {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
  animation: sp 2s infinite
}

.scroll-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5)
}

@keyframes sp {
  0%, 100% {
    opacity: .3;
    transform: scaleY(.6)
  }
  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--c4);
  border-bottom: 1px solid var(--c4);
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(30px) saturate(120%);
  -webkit-backdrop-filter: blur(30px) saturate(120%)
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: ms 20s linear infinite;
  width: max-content
}

.marquee-item {
  font-size: 16px;
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
  font-weight: 600
}

.marquee-item span {
  color: rgba(96, 165, 250, .7);
  margin: 0 24px
}

@keyframes ms {
  to {
    transform: translateX(-50%)
  }
}

.about {
  padding: 100px 48px;
  position: relative
}

.about-label {
  font-size: var(--fs13);
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 40px
}

.about-text {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 800px;
  color: rgba(255, 255, 255, .5);
  position: relative;
  z-index: 1
}

.about-text .word {
  display: inline-block;
  transition: color .15s, text-shadow .15s
}

.about-text .word.active {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 0 30px rgba(96, 165, 250, .15)
}

.values-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap
}

.val {
  opacity: 0;
  transform: translateY(30px)
}

.val-line {
  width: 52px;
  height: 3px;
  background: var(--g3);
  margin-bottom: 16px;
  border-radius: 1px
}

.val h3 {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 6px
}

.val p {
  font-size: 14px;
  color: var(--c3);
  font-weight: 400
}

.svc-section {
  position: relative;
  overflow: hidden
}

.svc-orbs {
  position: absolute;
  inset: 0;
  z-index: 0
}

.svc-orb1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: var(--ind);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .1;
  top: 10%;
  right: -8%
}

.svc-orb2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--blu);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .08;
  bottom: 5%;
  left: -5%
}

.svc-header {
  padding: 80px 48px 48px;
  text-align: center
}

.svc-label {
  font-size: var(--fs13);
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 16px
}

.svc-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px
}

.svc-header h2 .accent {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.svc-track {
  display: flex;
  gap: 24px;
  padding: 0 48px 120px;
  width: max-content
}

.svc-card {
  width: 380px;
  min-height: 440px;
  background: var(--c7);
  backdrop-filter: var(--bf);
  -webkit-backdrop-filter: var(--bf);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r16);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .4s, transform .3s, box-shadow .4s;
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.svc-card:hover {
  border-color: rgba(96, 165, 250, .2);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(96, 165, 250, .15)
}

.svc-num {
  font-size: 88px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(96, 165, 250, .08), rgba(167, 139, 250, .06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: auto
}

.svc-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.5px;
  margin-bottom: 12px
}

.svc-card p {
  font-size: 15px;
  color: var(--c3);
  line-height: 1.7;
  font-weight: 400
}

.process {
  padding: 100px 48px;
  position: relative
}

.proc-label {
  font-size: var(--fs13);
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 60px;
  text-align: center
}

.proc-h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 80px
}

.proc-h2 .accent {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.proc-grid {
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--r16);
  overflow: visible
}

.proc-item {
  background: rgba(255, 255, 255, .03);
  backdrop-filter: var(--bf);
  -webkit-backdrop-filter: var(--bf);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: scale(.9);
  z-index: 1;
  border-radius: var(--r16);
  border: 1px solid var(--c7)
}

.proc-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--g3);
  transition: width .8s
}

.proc-item.vis::after {
  width: 60%
}

.proc-num {
  font-size: 68px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c6), rgba(192, 132, 252, .25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1
}

.proc-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px
}

.proc-item p {
  font-size: 14px;
  color: var(--c3);
  line-height: 1.6;
  font-weight: 400
}

.parallax-banner {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c9);
  border-bottom: 1px solid var(--c9)
}

.parallax-text {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, .6);
  position: relative;
  z-index: 1
}

.parallax-text strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--blu), var(--pur), var(--blu));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gs 3s linear infinite
}

@keyframes gs {
  to {
    background-position: 200% center
  }
}

.contact {
  padding: 100px 48px;
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto
}

.contact-left {
  flex: 1
}

.contact-right {
  flex: 1;
  max-width: 440px
}

.contact-label {
  font-size: var(--fs13);
  letter-spacing: var(--ls5);
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: 16px
}

.contact-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px
}

.contact-left h2 .accent {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.contact-addr {
  font-size: 16px;
  color: var(--c3);
  line-height: 1.8;
  font-weight: 400;
  font-style: normal
}

.cform input, .cform textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r16);
  padding: 18px 22px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  font-weight: 300;
  margin-bottom: 12px;
  transition: border-color .4s, background .4s
}

.cform input::placeholder, .cform textarea::placeholder {
  color: var(--c5)
}

.cform input:focus, .cform textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05)
}

.cform textarea {
  min-height: 100px;
  resize: none
}

.btn-submit {
  width: 100%;
  padding: 18px;
  border-radius: var(--r40);
  background: var(--g1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .3s, transform .2s;
  margin-top: 4px
}

.btn-submit:hover {
  opacity: .85;
  transform: scale(.99)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

footer {
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c9)
}

footer p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1px
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 56px
  }

  .logo {
    font-size: 16px
  }

  .burger {
    display: flex
  }

  .nav-r {
    display: none
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 20px 60px
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px)
  }

  .hero-sub {
    font-size: 15px
  }

  .about {
    padding: 40px 20px;
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 0
  }

  .about-bg {
    display: none
  }

  .about-text {
    font-size: clamp(18px, 4vw, 28px)
  }

  .about-text .word {
    color: var(--c3) !important
  }

  .values-row {
    gap: 24px;
    margin-top: 24px
  }

  .svc-section {
    margin-top: 0;
    padding-top: 0
  }

  .pin-spacer {
    padding: 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important
  }

  .pin-spacer > .svc-section {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important
  }

  .svc-header {
    padding: 24px 20px 20px
  }

  .svc-track {
    padding: 0 20px 40px;
    gap: 16px;
    flex-direction: column;
    width: 100%
  }

  .svc-card {
    width: 100%;
    min-height: auto;
    padding: 28px
  }

  .svc-num {
    font-size: 48px
  }

  .svc-card h3 {
    font-size: 20px
  }

  .svc-card p {
    font-size: 14px
  }

  .process {
    padding: 40px 20px
  }

  .proc-grid {
    grid-template-columns:1fr 1fr;
    gap: 16px
  }

  .proc-num {
    font-size: 48px
  }

  .parallax-banner {
    padding: 30px 20px;
    height: auto;
    min-height: unset
  }

  .parallax-text {
    font-size: clamp(16px, 4vw, 28px)
  }

  .contact {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px
  }

  .cursor {
    display: none
  }

  footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px
  }

  .marquee-section {
    padding: 12px 0
  }

  .marquee-item {
    font-size: 13px
  }
}

@media (max-width: 480px) {
  .proc-grid {
    grid-template-columns:1fr
  }

  .values-row {
    gap: 20px;
    flex-direction: column
  }

  .svc-card {
    width: 100%;
    min-height: autof
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 36px)
  }
}