:root {
  --ink: #10112d;
  --muted: #62637c;
  --purple: #7f3cff;
  --cyan: #39d9ee;
  --paper: #f7f6fb;
  --line: rgba(16, 17, 45, 0.14);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 124px;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 124px;
  height: 104px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
  font-weight: 600;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 92px 70px 54px;
  border-radius: 30px;
  background:
    linear-gradient(132deg, rgba(127, 60, 255, 0.22), transparent 38%),
    #0d0a2d;
  color: white;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #685e7a;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  color: #d6cbff;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0;
  font-size: clamp(66px, 8.5vw, 126px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #9e62ff 12%, #42deee 72%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 70px;
  bottom: 54px;
  left: 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.hero-bottom p {
  width: 420px;
  margin: 0;
  color: #c7c4dc;
  font-size: 20px;
  line-height: 1.6;
}

.round-button {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 22px;
  transition: 180ms ease;
}

.round-button:hover {
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(3px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
}

.glow-one {
  width: 450px;
  height: 450px;
  top: -150px;
  right: -70px;
  border: 1px solid rgba(62, 224, 240, 0.26);
  box-shadow:
    0 0 0 35px rgba(62, 224, 240, 0.03),
    0 0 0 75px rgba(62, 224, 240, 0.02);
}

.glow-two {
  width: 260px;
  height: 260px;
  right: 205px;
  bottom: -155px;
  background: rgba(127, 60, 255, 0.24);
  filter: blur(55px);
}

.statement {
  padding-block: 140px 130px;
  background-image:
    repeating-linear-gradient(45deg, rgba(198, 146, 20, 0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(-45deg, rgba(198, 146, 20, 0.06) 0 1px, transparent 1px 24px);
}

.statement h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.statement h2 .trad {
  color: #c69214;
}

.statement h2 .digi {
  color: transparent;
  background: linear-gradient(95deg, #7f3cff 12%, #26c7de 82%);
  background-clip: text;
  -webkit-background-clip: text;
}

.statement-copy {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.statement-copy.malay {
  margin-top: 16px;
  color: #9a7b1e;
  font-size: 17px;
  font-style: italic;
}

.transform-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  max-width: 880px;
  margin-top: 56px;
}

.transform-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(16, 17, 45, 0.05);
  font-size: 17px;
}

.transform-row .from {
  color: #9a7b1e;
  font-weight: 600;
}

.transform-row .t-arrow {
  color: var(--purple);
  font-weight: 700;
}

.transform-row .to {
  font-weight: 700;
  color: transparent;
  background: linear-gradient(95deg, #7f3cff 12%, #26c7de 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.showcase {
  width: min(1260px, calc(100% - 32px));
  padding: 86px 40px 42px;
  border-radius: 30px;
  background: var(--ink);
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-label.light {
  color: #a9a3c4;
}

.section-heading h2,
.services-intro h2,
.event-panel h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 6px;
  color: #aaa8bc;
  font-size: 18px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #17163b;
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: #89869f;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  height: 248px;
  margin: 24px 0 30px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(127, 60, 255, 0.1), rgba(57, 217, 238, 0.04)),
    rgba(255, 255, 255, 0.025);
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(34deg);
}

.product-visual::after {
  transform: rotate(-34deg);
}

.product-visual.filled {
  border: none;
  background: #d5dbff;
}

.product-visual.filled::before,
.product-visual.filled::after {
  display: none;
}

.product-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.image-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 22px;
}

.image-label {
  position: relative;
  z-index: 2;
  color: #858198;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.product-card > p {
  min-height: 72px;
  margin: 0;
  color: #aaa8bc;
  font-size: 17px;
  line-height: 1.55;
}

.price {
  margin-top: 24px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  padding-block: 160px;
}

.services-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.services-copy {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 42px 92px minmax(0, 1fr) minmax(0, 1.25fr) 28px;
  gap: 20px;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.service-row h3,
.service-row p {
  overflow-wrap: break-word;
}

.service-thumb {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  background: #d5dbff;
  object-fit: cover;
}

.service-row > span:first-child {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 11px;
}

.service-row h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.service-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.arrow {
  font-size: 20px;
}

.portfolio {
  padding-block: 0 150px;
}

.portfolio-intro {
  margin-bottom: 54px;
}

.portfolio-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.portfolio-play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #d5dbff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-play:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(127, 60, 255, 0.22);
}

.portfolio-play img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  background: rgba(13, 10, 45, 0.72);
  color: white;
  font-size: 24px;
  backdrop-filter: blur(4px);
  transition: 0.2s ease;
  animation: badge-pulse 2.4s ease-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 60, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(127, 60, 255, 0);
  }
}

.portfolio-play:hover .play-badge,
.product-play:hover .play-badge {
  background: var(--purple);
  transform: scale(1.08);
}

.product-play {
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease;
}

.product-play:hover {
  transform: translateY(-4px);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal[hidden] {
  display: none;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 45, 0.82);
  backdrop-filter: blur(6px);
}

.video-frame {
  position: relative;
  margin: 0;
  max-width: min(440px, 92vw);
  width: 100%;
}

.video-frame video {
  width: 100%;
  max-height: 78vh;
  display: block;
  border-radius: 18px;
  background: #000;
}

.video-frame figcaption {
  margin-top: 14px;
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.video-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.video-close:hover {
  background: var(--cyan);
}

.gallery-panel {
  position: relative;
  width: min(1040px, 94vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.gallery-head p {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gallery-close {
  position: static;
  box-shadow: none;
  background: #ecebf4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 24px 24px;
  overflow-y: auto;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.gallery-grid img {
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 24px rgba(127, 60, 255, 0.25);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 6, 30, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 720px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lb-close {
  position: fixed;
  top: 22px;
  right: 22px;
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: 0.15s ease;
}

.lb-arrow:hover {
  background: var(--purple);
  border-color: var(--purple);
}

.lb-prev {
  left: 22px;
}

.lb-next {
  right: 22px;
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px 14px 16px;
  }

  .gallery-panel {
    max-height: 90vh;
  }

  .lb-arrow {
    top: auto;
    bottom: 26px;
    transform: none;
  }

  .lightbox img {
    max-height: 74vh;
  }
}

.event {
  width: min(1260px, calc(100% - 32px));
}

.event-panel {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 60px;
  padding: 78px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(57, 217, 238, 0.32), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(127, 60, 255, 0.44), transparent 36%),
    #0d0a2d;
  color: white;
}

.event-panel h2 {
  max-width: 690px;
  font-size: clamp(48px, 6vw, 78px);
}

.event-malay {
  margin: 22px 0 0;
  color: #b8b4d6;
  font-size: 19px;
  font-style: italic;
}

.event-meta {
  align-self: end;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.event-meta span {
  display: block;
  color: #aaa7c0;
  font-size: 12px;
  text-transform: uppercase;
}

.event-meta strong {
  display: block;
  margin: 8px 0 26px;
  color: var(--cyan);
  font-size: 26px;
}

.event-meta p {
  margin: 0;
  color: #c8c5d9;
  font-size: 17px;
  line-height: 1.6;
}

.event-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-button {
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 180ms ease;
}

.contact-button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.contact-button.primary {
  border: none;
  background: linear-gradient(95deg, #9e62ff 12%, #42deee 88%);
  color: #0d0a2d;
}

.contact-button.primary:hover {
  color: #0d0a2d;
  filter: brightness(1.1);
}

.footer {
  padding: 70px 0 44px;
  color: #74748a;
  font-size: 15px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 44px 80px;
  justify-content: space-between;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-intro {
  max-width: 300px;
}

.footer-tag {
  margin: 14px 0 0;
  line-height: 1.6;
}

.footer-heading {
  display: block;
  margin-bottom: 16px;
  color: #9a99ad;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.footer-contact a,
.footer-nav a {
  color: var(--ink);
  transition: 150ms ease;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.footer-brand span {
  color: var(--purple);
}

@media (max-width: 900px) {
  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 74px 34px 42px;
  }

  .hero-bottom {
    right: 34px;
    bottom: 42px;
    left: 34px;
  }

  .section-heading,
  .services {
    display: block;
  }

  .section-heading > p {
    margin-top: 24px;
  }

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

  .product-card {
    min-height: 470px;
  }

  .services-intro {
    position: static;
    margin-bottom: 74px;
  }

  .event-panel {
    grid-template-columns: 1fr;
    padding: 55px 38px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 78px;
  }

  .brand,
  .brand img {
    width: 108px;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: 570px;
    padding: 64px 24px 34px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-bottom {
    right: 24px;
    bottom: 34px;
    left: 24px;
  }

  .hero-bottom p {
    width: calc(100% - 76px);
    font-size: 15px;
  }

  .round-button {
    width: 52px;
    height: 52px;
  }

  .statement {
    padding-block: 100px;
  }

  .statement h2 {
    font-size: 43px;
  }

  .showcase,
  .event {
    width: calc(100% - 16px);
  }

  .showcase {
    padding: 64px 12px 12px;
  }

  .section-heading {
    padding-inline: 12px;
  }

  .section-heading h2,
  .services-intro h2 {
    font-size: 44px;
  }

  .services {
    padding-block: 110px;
  }

  .service-row {
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    grid-template-areas:
      "num num num"
      "thumb title arrow"
      "thumb desc desc";
    gap: 6px 16px;
  }

  .service-row > span:first-child {
    grid-area: num;
    margin-bottom: 4px;
  }

  .service-thumb {
    grid-area: thumb;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    align-self: start;
  }

  .service-row h3 {
    grid-area: title;
    font-size: 21px;
  }

  .service-row p {
    grid-area: desc;
  }

  .service-row .arrow {
    grid-area: arrow;
  }

  .portfolio {
    padding-block: 0 100px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-play {
    max-width: 340px;
    margin-inline: auto;
  }

  .portfolio-card h3 {
    text-align: center;
  }

  .event-panel {
    min-height: 560px;
    padding: 46px 28px;
    border-radius: 22px;
  }

  .event-panel h2 {
    font-size: 47px;
  }

  .footer {
    padding: 56px 0 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .transform-list {
    grid-template-columns: 1fr;
  }

  .transform-row {
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
