:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #8b7eff;
  --accent-2: #2fffc8;
  --text: #f5f5f9;
  --text-secondary: #d4d4e0;
  --muted: rgba(240, 240, 245, 0.62);
  --muted-2: rgba(240, 240, 245, 0.42);
  --highlight: #ffd700;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --scroll: 0;
  --scroll-progress: 0;
  --mouse-x: 50%;
  --mouse-y: 20%;
}

@property --ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 120deg;
}

/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(circle at 18% 5%, rgba(139, 126, 255, 0.28), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(47, 255, 200, 0.15), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(139, 126, 255, 0.1), transparent 30%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.65) 45%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(47, 255, 200, 0.12), transparent 22%),
    linear-gradient(120deg, transparent 0%, rgba(139, 126, 255, 0.05) 42%, transparent 72%);
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: 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='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: -0.065em;
  font-weight: 900;
}

p {
  margin: 0;
  line-height: 1.8;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.translation {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  font-weight: 400;
}

.label,
.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}

.eyebrow {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(47, 255, 200, 0.25);
  border-radius: 999px;
  background: rgba(47, 255, 200, 0.08);
  color: var(--text);
  font-weight: 600;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 40px));
  height: 66px;
  padding: 0 16px 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 13, 20, 0.74);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,0.28);
  transition: 0.25s var(--ease);
}

.navbar::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 18px rgba(47,255,200,0.35);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.navbar > * {
  position: relative;
  z-index: 1;
}

.navbar.scrolled {
  background: rgba(17, 17, 24, 0.86);
  border-color: var(--border-strong);
  box-shadow: 0 18px 80px rgba(0,0,0,0.42);
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.logo span {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  border-radius: 99px;
  transition: width 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text);
}

.nav-cta,
.menu-btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  border: 1px solid rgba(139, 126, 255, 0.4);
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent), #a699ff);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(139, 126, 255, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translate(var(--magnet-x), var(--magnet-y)) scale(1.02);
  border-color: rgba(47,255,200,0.4);
  box-shadow: 0 18px 52px rgba(139,126,255,0.34);
}

.menu-btn {
  display: none;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 132px 0 72px;
}

.hero-grid {
  min-height: calc(100vh - 204px);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  grid-template-rows: auto auto auto;
  gap: 22px;
  align-items: stretch;
}

.hero-main,
.hero-photo,
.hero-card,
.glass-card,
.process-card,
.work-card,
.proof-card,
.contact-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.026));
  backdrop-filter: blur(18px);
  box-shadow: 0 0 50px rgba(124,110,250,0.08);
}

.hero-main,
.hero-card,
.glass-card,
.process-card,
.work-card,
.proof-card,
.contact-card {
  overflow: hidden;
}

.hero-main::after,
.hero-card::before,
.glass-card::before,
.process-card::before,
.work-card::before,
.proof-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.12) 38%, transparent 58%),
    radial-gradient(circle at var(--spotlight-x, 18%) var(--spotlight-y, 0%), rgba(47,255,200,0.16), transparent 28%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.35s var(--ease), transform 0.7s var(--ease);
}

.hero-main:hover::after,
.hero-card:hover::before,
.glass-card:hover::before,
.process-card:hover::before,
.work-card:hover::before,
.proof-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.hero-main > *,
.hero-card > *,
.glass-card > *,
.process-card > *,
.work-card > *,
.proof-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.glass-card,
.process-card,
.work-card,
.proof-card,
.contact-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spotlight-x: 50%;
  --spotlight-y: 0%;
}

.hero-main {
  grid-row: 1 / span 2;
  min-height: 560px;
  border-radius: 26px;
  padding: clamp(44px, 5.6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 50px rgba(124,110,250,0.08);
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: -8% -8% 50%;
  background: radial-gradient(circle at 10% 20%, rgba(47,255,200,0.24), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(139,126,255,0.22), transparent 22%);
  opacity: 0.8;
  filter: blur(50px);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite;
  transform: translate3d(calc(var(--scroll) * -0.04px), 0, 0);
}

.hero-main h1 {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(48px, 6.1vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.hero-main h1 span {
  display: inline;
  background: linear-gradient(135deg, var(--text), var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  filter: drop-shadow(0 0 18px rgba(47,255,200,0.14));
}

.hero-copy {
  margin-top: 32px;
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-actions,
.contact-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translate(var(--magnet-x), calc(var(--magnet-y) - 3px)) scale(1.01);
}

.btn.primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #a699ff);
  color: #fff;
  box-shadow: 0 16px 48px rgba(139, 126, 255, 0.32);
  border: 1px solid rgba(139, 126, 255, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #9f8cff, #8c7cff);
  box-shadow: 0 20px 56px rgba(139, 126, 255, 0.28);
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.32) 50%, transparent 65%);
  transform: translateX(-55%);
  transition: transform 0.7s var(--ease);
}

.btn.primary:hover::before {
  transform: translateX(55%);
}

.btn.secondary {
  border: 1px solid rgba(139, 126, 255, 0.3);
  background: rgba(139, 126, 255, 0.1);
  color: var(--text);
}

.btn.secondary:hover {
  background: rgba(139, 126, 255, 0.16);
  border-color: rgba(139, 126, 255, 0.5);
}

.work-content a {
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.work-content a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.hero-photo {
  width: clamp(220px, 24vw, 300px);
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  align-self: end;
  justify-self: center;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    conic-gradient(from var(--ring-angle), rgba(47,255,200,0.7), rgba(139,126,255,0.28), rgba(255,255,255,0.14), rgba(47,255,200,0.7));
  box-shadow:
    0 18px 62px rgba(0,0,0,0.34),
    0 0 34px rgba(47,255,200,0.12);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
  transform: translateY(calc(var(--scroll) * 0.018px));
  animation: portraitRing 14s linear infinite;
}

.hero-photo:hover {
  transform: translateY(calc(var(--scroll) * 0.018px)) translateY(-2px);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 50%;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.7s var(--ease);
}

.hero-photo:hover img {
  transform: scale(1.02);
}

.hero-card {
  border-radius: 22px;
  padding: 28px;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}

.hero-card.card-stack {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
}

.hero-card.card-stack {
  animation-delay: 1.3s;
}

.hero-card.card-focus {
  animation-delay: 0.2s;
}

.hero-card h2 {
  margin-top: 16px;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
}

.stack-list {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.stack-list span {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(240,240,245,0.75);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.stack-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(47,255,200,0.32);
  background: rgba(47,255,200,0.075);
  color: var(--text);
}

/* MARQUEE */

.marquee-section {
  padding: 40px 0 88px;
  overflow: hidden;
}

.marquee {
  position: relative;
  border-block: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  min-width: max-content;
  gap: 18px;
  padding: 16px 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee-track span {
  white-space: nowrap;
}

.tool-logo {
  min-width: 120px;
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 126, 255, 0.15);
  border-radius: 999px;
  background: rgba(139, 126, 255, 0.08);
  color: var(--muted);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.tool-logo:nth-child(3n) {
  color: var(--accent-2);
}

.tool-logo:nth-child(4n) {
  color: var(--accent);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.marquee-track {
  animation: marquee 34s linear infinite;
}

/* SECTIONS */

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--accent-2), rgba(139,126,255,0.7), transparent);
  box-shadow: 0 0 22px rgba(47,255,200,0.25);
}

.section-heading h2 {
  margin-top: 16px;
  max-width: 680px;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.065em;
}

/* SERVICES */

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

.glass-card {
  min-height: 280px;
  border-radius: 24px;
  padding: 32px;
  transition: 0.25s var(--ease);
}

.glass-card:hover,
.process-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(139, 126, 255, 0.42);
  box-shadow: 0 0 74px rgba(139, 126, 255, 0.24);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(139, 126, 255, 0.18);
  color: var(--accent-2);
  font-size: 24px;
}

.glass-card h3,
.process-card h3,
.work-card h3 {
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.glass-card p:not(.translation),
.process-card p:not(.translation),
.work-card p:not(.translation) {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.78;
  font-weight: 400;
}

/* PROCESS */

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

.process-card {
  min-height: 260px;
  border-radius: 22px;
  padding: 32px;
  transition: 0.25s var(--ease);
}

.process-card span {
  font-family: "DM Mono", monospace;
  color: var(--highlight);
}

/* WORK / SELECTED PORTFOLIO */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.work-card.featured {
  grid-column: span 2;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  background: #111118;
  backdrop-filter: blur(18px);
  box-shadow: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 126, 255, 0.28);
  box-shadow: none;
}

.work-media {
  width: 100%;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease);
}

.work-card:hover .work-media {
  transform: translateY(-2px);
}

.work-media.video-media {
  padding: 0;
  line-height: 0;
  background: transparent;
}

/* Video tampil natural. Tidak di-crop, tidak di-zoom, card mengikuti video. */
.work-video {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 24px 24px 0 0;
  background: transparent;
}

.work-media.static-media {
  aspect-ratio: 2058 / 1080;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  background:
    radial-gradient(circle at 40% 30%, rgba(124,110,250,0.28), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.work-media.purple {
  background:
    radial-gradient(circle at 40% 30%, rgba(124,110,250,0.28), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.work-media.teal {
  background:
    radial-gradient(circle at 60% 30%, rgba(54,241,205,0.22), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.work-media span {
  max-width: 90%;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: rgba(240,240,245,0.9);
}

.work-content {
  padding: 32px;
}

.work-content h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.work-content p:not(.translation) {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.78;
  font-weight: 400;
}

.work-content a {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent-2);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
}

/* PROOF */

.proof-section {
  padding-top: 30px;
}

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

.proof-card {
  border-radius: 24px;
  padding: 40px;
}

.proof-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.065em;
  background: linear-gradient(135deg, var(--text), var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.proof-card span {
  display: block;
  margin-top: 16px;
  color: var(--text-secondary);
  font-weight: 700;
}

/* CONTACT */

.contact-section {
  padding: 100px 0 120px;
}

.contact-card {
  border-radius: 32px;
  padding: clamp(40px, 7vw, 88px);
  text-align: center;
}

.contact-card h2 {
  margin: 16px auto 0;
  max-width: 820px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.contact-copy {
  margin: 32px auto 0;
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
}

.contact-actions {
  justify-content: center;
}

/* FOOTER */

.footer {
  padding: 40px 0 140px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.footer p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

/* STICKY WA */

.sticky-wa {
  display: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.back-to-top {
  display: none;
}

.sticky-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(124,110,250,0.28);
  background: linear-gradient(135deg, #9a8cff, #2fffc8);
}

/* ANIMATION */

.reveal {
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  --hover-y: 0px;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.8s var(--ease),
    filter 0.8s var(--ease),
    transform 0.8s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  will-change: opacity, filter, transform;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--hover-y), 0) scale(1);
}

.section-heading.reveal {
  --reveal-y: 22px;
}

.hero-main.reveal {
  --reveal-y: 18px;
  --reveal-scale: 0.995;
}

.hero-photo.reveal {
  --reveal-y: 28px;
  transform: translate3d(0, calc(var(--reveal-y) + (var(--scroll) * 0.018px)), 0) scale(var(--reveal-scale));
}

.hero-photo.reveal.visible {
  transform: translate3d(0, calc(var(--hover-y) + (var(--scroll) * 0.018px)), 0) scale(1);
}

.hero-photo.reveal.visible:hover {
  --hover-y: -2px;
}

.hero-card.reveal {
  animation: none;
}

.hero-card.reveal.visible {
  animation: float 7s ease-in-out infinite;
}

.hero-card.card-stack.reveal.visible {
  animation-delay: 1.3s;
}

.hero-card.card-focus.reveal.visible {
  animation-delay: 0.2s;
}

.glass-card:hover,
.process-card:hover {
  --hover-y: -5px;
}

.work-card:hover {
  --hover-y: -5px;
}

.proof-card.reveal {
  --reveal-y: 24px;
}

.contact-card.reveal {
  --reveal-y: 26px;
  --reveal-scale: 0.99;
}

.work-card.reveal .work-media,
.hero-photo.reveal img {
  transform: scale(1.025);
  transition: transform 1s var(--ease);
}

.work-card.reveal.visible .work-media,
.hero-photo.reveal.visible img {
  transform: scale(1);
}

.work-card.reveal.visible:hover .work-media {
  transform: translateY(-2px);
}

.hero-photo.reveal.visible:hover img {
  transform: scale(1.02);
}

@keyframes heroGlow {
  0%, 100% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05) translateY(3px);
    opacity: 0.9;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes portraitRing {
  to {
    --ring-angle: 480deg;
  }
}

@media (min-width: 769px) and (pointer: fine) {
  .glass-card,
  .process-card,
  .work-card,
  .proof-card,
  .contact-card {
    transform-style: preserve-3d;
  }

  .glass-card:hover,
  .process-card:hover,
  .work-card:hover,
  .proof-card:hover,
  .contact-card:hover {
    transform:
      perspective(900px)
      translateY(-5px)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      scale(1.01);
  }

  .work-card:hover {
    box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  }

  .glass-card:hover,
  .process-card:hover,
  .proof-card:hover,
  .contact-card:hover {
    box-shadow: 0 0 74px rgba(139, 126, 255, 0.24);
  }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-rows: auto;
    gap: 24px;
  }

  .hero-main {
    grid-row: auto;
    min-height: auto;
  }

  .hero-photo {
    width: min(72vw, 300px);
    height: auto;
    justify-self: center;
    align-self: center;
    transform: none;
  }

  .hero-photo:hover,
  .hero-photo.reveal,
  .hero-photo.reveal.visible,
  .hero-photo.reveal.visible:hover {
    transform: none;
  }

  .hero-card.card-stack {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .stack-list {
    justify-content: flex-start;
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 18% 5%, rgba(139, 126, 255, 0.22), transparent 30%),
      radial-gradient(circle at 86% 16%, rgba(47, 255, 200, 0.1), transparent 28%),
      var(--bg);
  }

  body::before,
  .noise {
    display: none;
  }

  .container,
  .navbar {
    width: calc(100% - 32px);
  }

  .navbar {
    top: 12px;
    height: 62px;
    background: rgba(17,17,24,0.96);
    backdrop-filter: none;
    overflow: visible;
    box-shadow: 0 12px 34px rgba(0,0,0,0.32);
  }

  .navbar.scrolled {
    box-shadow: 0 12px 34px rgba(0,0,0,0.36);
  }

  .navbar::before {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links.active {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(17,17,24,0.96);
    box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  }

  .hero {
    padding-top: 110px;
  }

  .hero-main {
    padding: 32px;
  }

  .hero-main,
  .hero-photo,
  .hero-card,
  .glass-card,
  .process-card,
  .work-card,
  .proof-card,
  .contact-card {
    backdrop-filter: none;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  }

  .hero-main::before,
  .hero-main::after,
  .hero-card::before,
  .glass-card::before,
  .process-card::before,
  .work-card::before,
  .proof-card::before,
  .contact-card::before {
    display: none;
  }

  .hero-main h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-main h1 span {
    animation: none;
    filter: none;
  }

  .hero-copy,
  .contact-copy {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-photo {
    width: min(76vw, 260px);
    height: auto;
    animation: none;
    margin-block: 6px 10px;
  }

  body::after {
    display: none;
  }

  .marquee {
    mask-image: none;
  }

  .marquee-track {
    animation-duration: 42s;
  }

  .marquee::before,
  .marquee::after {
    display: none;
  }

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

  .section {
    padding: 80px 0;
  }

  .section,
  .contact-section,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 36px;
  }

  .work-card,
  .work-media,
  .work-video {
    border-radius: 20px 20px 0 0;
  }

  .work-content {
    padding: 28px;
  }

  .work-content h3 {
    font-size: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .sticky-wa {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 18px;
    z-index: 999;
    display: block;
    max-width: none;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #9a8fff);
    color: white;
    text-align: center;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(124,110,250,0.24);
    transition: none;
  }

  .back-to-top {
    position: fixed;
    right: 16px;
    bottom: 82px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(47,255,200,0.28);
    border-radius: 50%;
    background: rgba(17,17,24,0.94);
    color: var(--text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s var(--ease);
  }

  .back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .back-to-top:active {
    transform: translateY(1px) scale(0.98);
    border-color: rgba(47,255,200,0.48);
  }

  .reveal {
    --reveal-y: 18px;
    opacity: 0;
    filter: none;
    transform: translate3d(0, var(--reveal-y), 0);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    will-change: auto;
  }

  .reveal.visible {
    transform: translate3d(0, 0, 0);
  }

  .hero-card.reveal.visible {
    animation: none;
  }
}

@media (min-width: 769px) {
  .sticky-wa,
  .back-to-top {
    display: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  body::after {
    opacity: 0;
  }

  @media (min-width: 769px) {
    .marquee-track {
      animation: marquee 34s linear infinite !important;
    }
  }
}

/* FIX FINAL BENERAN: container yang motong black bar bawah, bukan video di-zoom */

.work-media.video-media {
  width: 100%;
  aspect-ratio: 2058 / 1080;
  overflow: hidden;
  padding: 0;
  line-height: 0;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

/* video tetap natural, tidak cover, tidak contain, tidak zoom */
.work-video {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 24px 24px 0 0;
  background: transparent;
  transform: none !important;
  object-fit: unset !important;
}
