* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --pk: #ff2d78;
  --yw: #ffe500;
  --cy: #00d4ff;
  --pu: #a855f7;
  --gr: #39ff14;
  --dk: #0a0a0a;
  --dk2: #0f0f0f;
  --dk3: #1a1a1a;
  --wh: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dk);
  color: var(--wh);
  font-family: "Kanit", sans-serif;
  overflow-x: hidden;
  cursor: none;
}
#pb {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--pk),
    var(--yw),
    var(--cy),
    var(--pu),
    var(--pk)
  );
  background-size: 400% 100%;
  z-index: 9999;
  width: 0%;
  pointer-events: none;
  animation: pbm 3s linear infinite;
}
@keyframes pbm {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
.cr {
  width: 12px;
  height: 12px;
  background: var(--yw);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
.crr {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 229, 0, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    border-radius 0.3s;
}
.crt {
  width: 6px;
  height: 6px;
  background: var(--pk);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  animation: nz 0.38s steps(3) infinite;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
@keyframes nz {
  0% {
    background-position: 0 0;
  }
  33% {
    background-position: 70px -50px;
  }
  66% {
    background-position: -60px 80px;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.97), transparent);
  pointer-events: none;
}
.nl {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: letter-spacing 0.3s;
}
.nl:hover {
  letter-spacing: 3px;
}
.nl span {
  color: var(--yw);
}
.nv {
  display: flex;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.nv a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  overflow: hidden;
  padding: 2px 0;
}
.nv a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--yw);
  transition: top 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  font-weight: 700;
}
.nv a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--yw);
  transition: width 0.3s;
}
.nv a:hover {
  color: transparent;
}
.nv a:hover::before {
  top: 0;
}
.nv a:hover::after,
.nv a.on::after {
  width: 100%;
}
.nv a.on {
  color: var(--yw);
}
.ncta {
  background: var(--pk);
  color: #fff;
  padding: 10px 26px;
  font-family: "Kanit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  border-radius: 100px;
  text-decoration: none;
  overflow: hidden;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.ncta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yw);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.ncta:hover::after {
  transform: scaleX(1);
}
.ncta-t {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  display: block;
}
.ncta:hover .ncta-t {
  color: var(--dk);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 90px;
  position: relative;
  overflow: hidden;
}
#hcanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  z-index: 1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.o1 {
  width: 800px;
  height: 800px;
  background: rgba(255, 45, 120, 0.11);
  top: -250px;
  right: -180px;
  z-index: 1;
  animation: of1 18s ease-in-out infinite;
}
.o2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 212, 255, 0.07);
  bottom: -150px;
  left: -130px;
  z-index: 1;
  animation: of2 14s ease-in-out infinite;
}
.o3 {
  width: 400px;
  height: 400px;
  background: rgba(255, 229, 0, 0.05);
  top: 35%;
  left: 22%;
  z-index: 1;
  animation: of3 20s ease-in-out infinite;
}
.o4 {
  width: 260px;
  height: 260px;
  background: rgba(168, 85, 247, 0.09);
  top: 15%;
  right: 18%;
  z-index: 1;
  animation: of2 11s 3s ease-in-out infinite;
}
@keyframes of1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-70px, 55px) scale(1.1);
  }
  70% {
    transform: translate(45px, -35px) scale(0.91);
  }
}
@keyframes of2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  55% {
    transform: translate(65px, -55px);
  }
}
@keyframes of3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-85px, 65px) scale(1.3);
  }
}
.hbg {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 34vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.016);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.hword {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
  user-select: none;
}
/* ===== HERO WORD FLOATERS ===== */
.hword {
  position: absolute;
  pointer-events: auto;
  z-index: 3;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
  user-select: none;
  cursor: grab;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  will-change: transform;
  transition: box-shadow .25s, border-color .25s;
  touch-action: none;
  transform-origin: center;
}

.hword:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}

.hword.dragging {
  cursor: grabbing;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
  transition: none;
}

.hword.thrown {
  transition: none;
}

/* ---- Positions & Colors ---- */
.hw1 {
  top: 18%;
  left: 6%;
  color: rgba(255, 45, 120, .9);
  background: rgba(255, 45, 120, .12);
  border: 1px solid rgba(255, 45, 120, .4);
}

.hw3 {
  top: 80%;
  left: 50%;
  color: rgba(0, 212, 255, .9);
  background: rgba(0, 212, 255, .12);
  border: 1px solid rgba(0, 212, 255, .35);
}

.hw4 {
  bottom: 28%;
  right: 20%;
  font-size: 11px;
  padding: 6px 14px;
  color: rgba(168, 85, 247, .9);
  background: rgba(168, 85, 247, .12);
  border: 1px solid rgba(168, 85, 247, .35);
}

.hw7 {
  top: 70%;
  right: 8%;
  font-size: 11px;
  padding: 6px 14px;
  color: rgba(0, 212, 255, .8);
  background: rgba(0, 212, 255, .08);
  border: 1px solid rgba(0, 212, 255, .25);
}
.hw2 {
  top: 28%;
  right: 8%;
  font-size: 12px;
  padding: 6px 14px;
  color: rgba(255, 229, 0, .8);
  background: rgba(255, 229, 0, .08);
  border: 1px solid rgba(255, 229, 0, .3);
}

.hw5 {
  top: 42%;
  right: 22%;
  color: rgba(255, 45, 120, .5);
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.hw6 {
  bottom: 20%;
  left: 10%;
  font-size: 12px;
  padding: 5px 12px;
  color: rgba(255, 229, 0, .6);
  background: rgba(255, 229, 0, .06);
  border: 1px solid rgba(255, 229, 0, .2);
}

/* ---- Idle float (stops during drag/throw) ---- */
.hword:not(.dragging):not(.thrown) {
  animation: hwfl 7s ease-in-out infinite;
}

.hw3:not(.dragging):not(.thrown) {
  animation-delay: 2s;
  animation-duration: 8.5s;
}

.hw4:not(.dragging):not(.thrown) {
  animation-delay: .8s;
  animation-duration: 6.5s;
}

.hw7:not(.dragging):not(.thrown) {
  animation-delay: 1.5s;
  animation-duration: 10s;
}
.hw2:not(.dragging):not(.thrown) {
  animation-delay: 1.2s;
  animation-duration: 5.5s;
}

.hw5:not(.dragging):not(.thrown) {
  animation-delay: 3s;
  animation-duration: 9s;
}

.hw6:not(.dragging):not(.thrown) {
  animation-delay: 4s;
  animation-duration: 7.5s;
}

.hshape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.hg1 {
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255, 45, 120, 0.25);
  border-radius: 12px;
  top: 22%;
  left: 18%;
  animation: hwfl 7s 0.5s ease-in-out infinite;
}
.hg2 {
  width: 35px;
  height: 35px;
  background: rgba(255, 229, 0, 0.1);
  border-radius: 50%;
  bottom: 22%;
  left: 7%;
  animation: hwfl 6s 2s ease-in-out infinite;
}
.hg3 {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 26px solid rgba(168, 85, 247, 0.2);
  top: 16%;
  right: 15%;
  animation: hwfl 8s 1s ease-in-out infinite;
}
@keyframes hwfl {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  margin-bottom: 36px;
  font-family: "Space Mono", monospace;
  animation: fu 0.8s ease both;
  position: relative;
  z-index: 2;
  min-width: 320px;
}
.bdot {
  width: 6px;
  height: 6px;
  background: var(--cy);
  border-radius: 50%;
  animation: bp 2s infinite;
  flex-shrink: 0;
}
@keyframes bp {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
}
.tw-cur {
  animation: twblink 0.8s step-end infinite;
  color: var(--yw);
}
@keyframes twblink {
  50% {
    opacity: 0;
  }
}
.htitle {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(68px, 11vw, 162px);
  line-height: 0.85;
  letter-spacing: -4px;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.hl {
  overflow: hidden;
  display: block;
}
.hli {
  display: block;
  animation: lr 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hl:nth-child(1) .hli {
  animation-delay: 0.05s;
}
.hl:nth-child(2) .hli {
  animation-delay: 0.17s;
}
.hl:nth-child(3) .hli {
  animation-delay: 0.29s;
}
@keyframes lr {
  from {
    transform: translateY(115%) skewY(5deg);
    opacity: 0;
  }
  to {
    transform: translateY(0) skewY(0);
    opacity: 1;
  }
}
.ap {
  color: var(--pk);
}
.ay {
  color: var(--yw);
}
.ac {
  color: var(--cy);
}
.hbot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  animation: fu 1s 0.55s ease both;
  position: relative;
  z-index: 2;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hdesc {
  max-width: 420px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}
.hacts {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mag {
  position: relative;
  display: inline-block;
  cursor: none;
}
.bp1 {
  background: var(--yw);
  color: var(--dk);
  padding: 17px 44px;
  border-radius: 100px;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition:
    background 0.25s,
    color 0.25s;
}
.bp1:hover {
  background: var(--pk);
  color: #fff;
}
.bo1 {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 17px 44px;
  border-radius: 100px;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: all 0.2s;
}
.bo1:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.hscr {
  position: absolute;
  bottom: 90px;
  right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 3px;
  font-family: "Space Mono", monospace;
  animation: fu 1s 0.95s both;
  z-index: 2;
}
.scl {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}
.scl::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yw);
  animation: sa 2.2s ease-in-out infinite;
}
@keyframes sa {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

.mqs {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.mqt {
  display: flex;
  animation: mqa 22s linear infinite;
  width: max-content;
}
.mqt.rv2 {
  animation-direction: reverse;
  animation-duration: 26s;
}
.mqi {
  white-space: nowrap;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.27);
  padding: 0 36px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.mqi:hover {
  color: var(--yw);
}
.mqi .dot {
  color: var(--pk);
  margin: 0 6px;
}
@keyframes mqa {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mqpk {
  background: var(--pk);
  padding: 17px 0;
  overflow: hidden;
}
.mqpk .mqi {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}
.mqpk .mqi .dot {
  color: var(--yw);
}

.ticker {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tkr {
  display: inline-flex;
  animation: tka 30s linear infinite;
}
.tki {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 76px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  padding: 0 56px;
  white-space: nowrap;
  transition:
    color 0.25s,
    -webkit-text-stroke-color 0.25s,
    letter-spacing 0.25s;
  cursor: none;
}
.tki:hover {
  color: var(--yw);
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
}
@keyframes tka {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sec {
  padding: 130px 56px;
  position: relative;
  overflow: hidden;
}
.ltag {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yw);
  margin-bottom: 20px;
  display: block;
}
.stitle {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.93;
  letter-spacing: -1.5px;
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-illo {
  position: relative;
  height: 540px;
  min-height: 540px;
}

.fsh2 {
  position: absolute;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  overflow: hidden;
}

.f1 {
  width: 290px;
  height: 290px;
  background: var(--pk);
  top: 0;
  left: 0;
  border-radius: 32px;
  animation: flt 5.2s ease-in-out infinite;
}

.f2 {
  width: 200px;
  height: 200px;
  background: var(--cy);
  bottom: 10px;
  right: 0;
  border-radius: 24px;
  animation: flt 4s 1.1s ease-in-out infinite;
}

.f3 {
  width: 160px;
  height: 160px;
  background: var(--yw);
  bottom: 95px;
  left: 125px;
  border-radius: 20px;
  animation: flt 6.2s 0.6s ease-in-out infinite;
}

.f5 {
  width: 150px;
  height: 150px;
  background: var(--pu);
  top: 115px;
  left: 500px;
  border-radius: 22px;
  animation: flt 5.5s 1.3s ease-in-out infinite;
  opacity: 0.95;
}

.f6 {
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 32px;
  left: 250px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: flt 6.4s 0.8s ease-in-out infinite;
}

.f4 {
  width: 240px;
  height: 56px;
  background: var(--dk3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 310px;
  right: 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  animation: flt 5.8s 2s ease-in-out infinite;
}

.fin {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.about-deco {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  opacity: 0.13;
  pointer-events: none;
  animation: rotD 22s linear infinite;
}

@keyframes flt {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes rotD {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.sboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.sbox {
  background: var(--dk3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 26px;
  transition:
    border-color 0.35s,
    transform 0.35s,
    background 0.3s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.sbox::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.sbox:hover::before {
  opacity: 0.06;
}
.sbox:nth-child(1)::before {
  background: var(--pk);
}
.sbox:nth-child(2)::before {
  background: var(--yw);
}
.sbox:nth-child(3)::before {
  background: var(--cy);
}
.sbox:nth-child(4)::before {
  background: var(--pu);
}
.sbox:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.sn {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.sl2 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* SERVICES */
.svs-bg {
  background: var(--dk2);
}
.svgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.sv {
  background: var(--dk3);
  padding: 44px 30px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.4s,
    transform 0.35s;
  cursor: none;
}
.sv:first-child {
  border-radius: 28px 0 0 28px;
}
.sv:last-child {
  border-radius: 0 28px 28px 0;
}
.sv-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.sv:hover .sv-bar {
  transform: scaleX(1);
}
.sv:hover {
  background: #1d1d1d;
  transform: translateY(-9px);
}
.sv-glow {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.5s;
  transform: scale(0.3);
  pointer-events: none;
}
.sv:hover .sv-glow {
  opacity: 0.1;
  transform: scale(1);
}
.sv-bignumber {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition:
    color 0.4s,
    transform 0.4s;
}
.sv:hover .sv-bignumber {
  color: rgba(255, 255, 255, 0.06);
  transform: scale(1.05) translateY(-5px);
}
.sv-num {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  display: block;
}
.sv-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.sv:hover .sv-ico {
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 0 24px var(--c);
}
.sv-name {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.sv-name::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--c);
  width: 0;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 4px;
}
.sv:hover .sv-name::after {
  width: 100%;
}
.sv-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.72;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.sv:hover .sv-desc {
  color: rgba(255, 255, 255, 0.65);
}
.sv-tags {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.stg {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
  padding-left: 14px;
  position: relative;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.sv:hover .stg:nth-child(1) {
  transition-delay: 0.05s;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 20px;
}
.sv:hover .stg:nth-child(2) {
  transition-delay: 0.1s;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 20px;
}
.sv:hover .stg:nth-child(3) {
  transition-delay: 0.15s;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 20px;
}
.sv:hover .stg:nth-child(4) {
  transition-delay: 0.2s;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 20px;
}
.stg::before {
  content: "—";
  position: absolute;
  left: 0;
  font-size: 10px;
}
.c1 {
  --c: var(--pk);
}
.c2 {
  --c: var(--yw);
}
.c3 {
  --c: var(--cy);
}
.c4 {
  --c: var(--pu);
}
.sv-num,
.stg::before {
  color: var(--c);
}
.sv-bar,
.sv-glow {
  background: var(--c);
}

/* PORTFOLIO */
.port {
  background: var(--dk);
  padding: 130px 56px;
  position: relative;
  overflow: hidden;
}
.pgrid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  cursor: none;
  position: relative;
}
.pcard-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--dk3);
}
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcard:hover .ph::before {
  transform: scale(1.1);
}
.ph1::before {
  background: linear-gradient(135deg, #1a060e, #3d0920 50%, #ff2d78);
}
.ph2::before {
  background: linear-gradient(135deg, #0a0f14, #06202e 50%, #00d4ff);
}
.ph3::before {
  background: linear-gradient(135deg, #0f0e00, #2e2800 50%, #ffe500);
}
.ph-lbl {
  position: relative;
  z-index: 1;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.pcard-over {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.pcard:hover .pcard-over {
  opacity: 1;
}
.pcard-over-tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--yw);
  margin-bottom: 4px;
}
.pcard-over-title {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.pcard-arr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: var(--yw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4) rotate(-45deg);
  transition:
    opacity 0.32s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pcard:hover .pcard-arr {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.pcard-info {
  padding: 16px 4px 4px;
}
.pcard-cat {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.27);
  margin-bottom: 5px;
}
.pcard-title {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--wh);
  margin-bottom: 3px;
}
.pcard-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}
.port-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-va {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--wh);
  padding: 16px 40px;
  border-radius: 100px;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn-va::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yw);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-va:hover::before {
  transform: scaleX(1);
}
.btn-va:hover {
  border-color: var(--yw);
  color: var(--dk);
  transform: translateY(-2px);
}
.btn-va span,
.btn-va svg {
  position: relative;
  z-index: 1;
}
.port-count {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.22);
}

/* HOW WE WORK */
.proc-sec {
  background: var(--dk2);
  padding: 140px 56px 160px;
  position: relative;
  overflow: hidden;
}
.proc-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 30%,
      rgba(255, 229, 0, 0.04),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(255, 45, 120, 0.04),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 80%,
      rgba(0, 212, 255, 0.04),
      transparent 60%
    );
  pointer-events: none;
  animation: meshPulse 10s ease-in-out infinite;
}
@keyframes meshPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.proc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 70px 70px;
  }
}
.proc-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.pf1 {
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(255, 45, 120, 0.15);
  border-radius: 16px;
  top: 12%;
  left: 8%;
  animation: pffl 8s ease-in-out infinite;
  transform: rotate(12deg);
}
.pf2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 229, 0, 0.06);
  border-radius: 50%;
  top: 65%;
  right: 6%;
  animation: pffl 6s 1s ease-in-out infinite;
}
.pf3 {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid rgba(168, 85, 247, 0.1);
  bottom: 18%;
  left: 5%;
  animation: pffl 7s 2s ease-in-out infinite;
}
.pf4 {
  width: 60px;
  height: 2px;
  background: rgba(0, 212, 255, 0.2);
  top: 22%;
  right: 12%;
  transform: rotate(-30deg);
  animation: pffl 9s 1.5s ease-in-out infinite;
}
@keyframes pffl {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-25px) rotate(20deg);
  }
}
.proc-head {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.proc-head .ltag {
  margin-left: auto;
  margin-right: auto;
}
.proc-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 24px auto 0;
  line-height: 1.85;
}
.proc-grid-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.proc-col {
  position: relative;
  cursor: none;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(60px);
}
.proc-num {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 10vw, 160px);
  line-height: 0.85;
  letter-spacing: -6px;
  margin-bottom: 24px;
  position: relative;
  background: linear-gradient(
    180deg,
    currentColor 0%,
    currentColor 55%,
    transparent 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s;
  display: inline-block;
  user-select: none;
}
.proc-col:nth-child(1) .proc-num {
  color: var(--pk);
}
.proc-col:nth-child(2) .proc-num {
  color: var(--yw);
}
.proc-col:nth-child(3) .proc-num {
  color: var(--cy);
}
.proc-col:nth-child(4) .proc-num {
  color: var(--pu);
}
.proc-col:nth-child(5) .proc-num {
  color: var(--gr);
}
.proc-col:hover .proc-num {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 10px 30px currentColor);
}
.proc-col:nth-child(1) .proc-num {
  animation: numFloat 5s ease-in-out infinite;
}
.proc-col:nth-child(2) .proc-num {
  animation: numFloat 5s 1s ease-in-out infinite;
}
.proc-col:nth-child(3) .proc-num {
  animation: numFloat 5s 2s ease-in-out infinite;
}
.proc-col:nth-child(4) .proc-num {
  animation: numFloat 5s 3s ease-in-out infinite;
}
.proc-col:nth-child(5) .proc-num {
  animation: numFloat 5s 4s ease-in-out infinite;
}
@keyframes numFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.proc-col:hover .proc-num {
  animation: none;
}
.proc-divider {
  width: 0;
  height: 2px;
  margin-bottom: 24px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.proc-col.in .proc-divider {
  width: 100%;
}
.proc-col:nth-child(1) .proc-divider {
  background: var(--pk);
}
.proc-col:nth-child(2) .proc-divider {
  background: var(--yw);
}
.proc-col:nth-child(3) .proc-divider {
  background: var(--cy);
}
.proc-col:nth-child(4) .proc-divider {
  background: var(--pu);
}
.proc-col:nth-child(5) .proc-divider {
  background: var(--gr);
}
.proc-tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.7;
}
.proc-col:nth-child(1) .proc-tag {
  color: var(--pk);
}
.proc-col:nth-child(2) .proc-tag {
  color: var(--yw);
}
.proc-col:nth-child(3) .proc-tag {
  color: var(--cy);
}
.proc-col:nth-child(4) .proc-tag {
  color: var(--pu);
}
.proc-col:nth-child(5) .proc-tag {
  color: var(--gr);
}
.proc-title {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.proc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 28px;
  min-height: 90px;
}
.proc-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
}
.proc-col:nth-child(1) .proc-ico {
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.2);
}
.proc-col:nth-child(2) .proc-ico {
  background: rgba(255, 229, 0, 0.1);
  border: 1px solid rgba(255, 229, 0, 0.2);
}
.proc-col:nth-child(3) .proc-ico {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.proc-col:nth-child(4) .proc-ico {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.proc-col:nth-child(5) .proc-ico {
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.18);
}
.proc-col:hover .proc-ico {
  transform: rotate(-12deg) scale(1.2);
}
.proc-col:nth-child(1):hover .proc-ico {
  box-shadow: 0 0 30px rgba(255, 45, 120, 0.4);
}
.proc-col:nth-child(2):hover .proc-ico {
  box-shadow: 0 0 30px rgba(255, 229, 0, 0.4);
}
.proc-col:nth-child(3):hover .proc-ico {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}
.proc-col:nth-child(4):hover .proc-ico {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}
.proc-col:nth-child(5):hover .proc-ico {
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}
.proc-ico::before,
.proc-ico::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
.proc-col:nth-child(1) .proc-ico::before,
.proc-col:nth-child(1) .proc-ico::after {
  color: var(--pk);
}
.proc-col:nth-child(2) .proc-ico::before,
.proc-col:nth-child(2) .proc-ico::after {
  color: var(--yw);
}
.proc-col:nth-child(3) .proc-ico::before,
.proc-col:nth-child(3) .proc-ico::after {
  color: var(--cy);
}
.proc-col:nth-child(4) .proc-ico::before,
.proc-col:nth-child(4) .proc-ico::after {
  color: var(--pu);
}
.proc-col:nth-child(5) .proc-ico::before,
.proc-col:nth-child(5) .proc-ico::after {
  color: var(--gr);
}
.proc-col:hover .proc-ico::before {
  animation: icoRing 1.5s ease-out infinite;
}
.proc-col:hover .proc-ico::after {
  animation: icoRing 1.5s 0.5s ease-out infinite;
}
@keyframes icoRing {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}
.proc-connector {
  position: absolute;
  top: 70px;
  right: -20px;
  display: flex;
  gap: 5px;
  z-index: 3;
}
.proc-col:last-child .proc-connector {
  display: none;
}
.proc-cdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: connDot 1.5s ease-in-out infinite;
}
.proc-cdot:nth-child(1) {
  animation-delay: 0s;
}
.proc-cdot:nth-child(2) {
  animation-delay: 0.2s;
}
.proc-cdot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes connDot {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.proc-col.in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* WHY */
.why-sec {
  background: var(--pk);
  padding: 130px 56px;
  position: relative;
  overflow: hidden;
}
.why-bgtxt {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 28vw;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  white-space: nowrap;
  animation: bgd 14s ease-in-out infinite;
}
@keyframes bgd {
  0%,
  100% {
    transform: translateX(0) rotate(0);
  }
  50% {
    transform: translateX(-50px) rotate(-2deg);
  }
}
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 68px;
  position: relative;
  z-index: 2;
}
.wc {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 34px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.wc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.wc:hover::after {
  transform: translateY(0);
}
.wc:hover {
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.38);
}
.wnum {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.wtitle {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.wtxt {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* TYPES */
.types-sec {
  background: var(--dk);
  padding: 130px 56px;
  position: relative;
  overflow: hidden;
}
.types-ring {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 229, 0, 0.06);
  animation: rp 4s ease-in-out infinite;
}
.types-ring2 {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 229, 0, 0.1);
  animation: rp 4s 1s ease-in-out infinite;
}
@keyframes rp {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 0.5;
  }
}
.types-big {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.93;
  letter-spacing: -2px;
  margin-bottom: 64px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yw);
  border-radius: 100px;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill:hover {
  border-color: var(--yw);
  color: var(--dk);
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 229, 0, 0.2);
}
.pill:hover::before {
  transform: scale(1);
}
.pill-t {
  position: relative;
  z-index: 1;
  transition: font-weight 0.2s;
}
.pill:hover .pill-t {
  font-weight: 700;
}

/* CONTACT */
.contact-sec {
  background: var(--dk2);
  text-align: center;
  padding: 150px 56px;
  position: relative;
  overflow: hidden;
}
.cf1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.07),
    transparent 70%
  );
  top: -300px;
  left: -300px;
  pointer-events: none;
  animation: of1 18s ease-in-out infinite;
  filter: blur(60px);
}
.cf2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent 70%);
  bottom: -250px;
  right: -250px;
  pointer-events: none;
  animation: of2 14s ease-in-out infinite;
  filter: blur(60px);
}
.cf3 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 0, 0.04), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: of3 10s ease-in-out infinite;
  filter: blur(50px);
}
.cbig {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: clamp(54px, 11vw, 148px);
  line-height: 0.84;
  letter-spacing: -4px;
  margin: 48px 0 0;
  position: relative;
  z-index: 2;
}
.cbig .out {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}
.cbig .fill {
  color: var(--yw);
}
.csub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  max-width: 460px;
  margin: 36px auto 0;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}
.cacts {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cmeta {
  margin-top: 80px;
  font-size: 11px;
  font-family: "Space Mono", monospace;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 2px;
  line-height: 2.2;
  position: relative;
  z-index: 2;
}
footer {
  padding: 28px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flogo {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-size: 17px;
}
.flogo span {
  color: var(--yw);
}
.fcopy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}
.fsoc {
  display: flex;
  gap: 24px;
}
.fsoc a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-family: "Space Mono", monospace;
  letter-spacing: 1px;
  transition:
    color 0.2s,
    letter-spacing 0.2s;
}
.fsoc a:hover {
  color: var(--yw);
  letter-spacing: 2px;
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv-l {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}
.rv-s {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-s.in {
  opacity: 1;
  transform: scale(1);
}
.rv-rot {
  opacity: 0;
  transform: rotate(-6deg) translateY(36px) scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-rot.in {
  opacity: 1;
  transform: rotate(0) translateY(0) scale(1);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .svgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv:first-child {
    border-radius: 28px 0 0 0;
  }
  .sv:nth-child(2) {
    border-radius: 0 28px 0 0;
  }
  .sv:nth-child(3) {
    border-radius: 0 0 0 28px;
  }
  .sv:last-child {
    border-radius: 0 0 28px 0;
  }
  .proc-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-col:last-child {
    grid-column: 1/-1;
    max-width: 320px;
  }
}
@media (max-width: 992px) {
  nav {
    padding: 18px 24px;
  }
  .nv {
    display: none;
  }
  .hero,
  .sec,
  .port,
  .proc-sec,
  .why-sec,
  .types-sec,
  .contact-sec {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero {
    padding-bottom: 70px;
  }
  .about-wrap,
  .wgrid,
  .pgrid3 {
    grid-template-columns: 1fr;
  }
  .hbot {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .about-illo {
    height: 420px;
  }
  .proc-grid-wrap {
    grid-template-columns: 1fr;
  }
  .proc-col:last-child {
    grid-column: auto;
    max-width: none;
  }
  .proc-connector {
    display: none;
  }
  footer {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  body {
    cursor: auto;
  }
  .cr,
  .crr,
  .crt {
    display: none;
  }
  .htitle {
    font-size: clamp(54px, 14vw, 92px);
    letter-spacing: -2px;
  }
  .hbadge {
    min-width: auto;
  }
  .hacts {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .bp1,
  .bo1,
  .btn-va {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .svgrid {
    grid-template-columns: 1fr;
  }
  .sv:first-child,
  .sv:nth-child(2),
  .sv:nth-child(3),
  .sv:last-child {
    border-radius: 24px;
  }
  .wgrid {
    grid-template-columns: 1fr;
  }
  .sboxes {
    grid-template-columns: 1fr 1fr;
  }
  .types-big,
  .stitle {
    word-break: keep-all;
  }
}
@media (max-width: 420px) {
  .f6 {
    display: none;
  }
}
