@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Syncopate";
  src: url("../fonts/syncopate-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Syncopate";
  src: url("../fonts/syncopate-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bt-motion-fast: 180ms;
  --bt-motion-base: 280ms;
  --bt-motion-slow: 760ms;
  --bt-ease-standard: cubic-bezier(.2, .75, .25, 1);
  --bt-ease-emphasized: cubic-bezier(.16, 1, .3, 1);
  --bt-distance-xs: 6px;
  --bt-distance-sm: 12px;
  --bt-distance-md: 20px;
  --bt-cyan: #06b6d4;
  --bt-navy: #05070c;
  --bt-surface: #08131e;
  --bt-gray: #94a3b8;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: bt-page-out var(--bt-motion-base) var(--bt-ease-standard) both;
}

::view-transition-new(root) {
  animation: bt-page-in var(--bt-motion-base) var(--bt-ease-emphasized) both;
}

html {
  background: var(--bt-navy);
  scroll-behavior: smooth;
}

body.bt-motion-page {
  min-width: 320px;
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.65;
  color: #f8fafc;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bt-motion-page p {
  max-width: 68ch;
}

.bt-motion-page section p.text-xs {
  font-size: clamp(.875rem, .83rem + .14vw, .96rem);
  line-height: 1.7;
}

.bt-motion-page section p.text-sm,
.bt-motion-page .hero-desc,
.bt-motion-page .hero-p,
.bt-motion-page .rx-text-body {
  font-size: clamp(1rem, .94rem + .2vw, 1.125rem);
  line-height: 1.75;
}

.bt-motion-page :where(a, button, [role="button"], input, textarea, select):focus-visible {
  outline: 2px solid var(--bt-cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(6, 182, 212, .16);
}

.bt-motion-page .floating-social-media a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
}

/* Legacy source is visible by default. JavaScript only marks below-fold items pending. */
.bt-motion-page :where(
  .fade-up-el,
  .reveal-el,
  .split-reveal,
  .hero-line,
  .hero-tag,
  .hero-desc,
  .hero-btns,
  .hero-play,
  .hero-fade,
  .hero-right,
  .rx-fade-up,
  .rev,
  .glass-box.opacity-0,
  .case-head,
  .case-slider,
  .p-head,
  .p-step,
  .wm-img,
  .wm-text,
  .faq-head,
  .faq-item,
  .cta-content,
  .tabs-left,
  .tabs-right
) {
  opacity: 1 !important;
  visibility: visible !important;
  translate: none !important;
  transform: none !important;
  filter: none !important;
}

.bt-motion-page .nav-header {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Shared navigation used by pages that do not ship their own header. */
.bt-shared-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #fff;
  background: rgba(5, 7, 12, .94);
  backdrop-filter: blur(16px);
}

.bt-shared-brand,
.bt-shared-links a,
.bt-shared-resume,
.bt-shared-mobile-menu a {
  border: 0 !important;
  color: inherit;
  text-decoration: none !important;
  box-shadow: none !important;
}

.bt-shared-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex: 0 0 auto;
  font: 700 1rem/1.2 "Syncopate", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bt-shared-brand span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-cyan);
  box-shadow: 0 0 9px var(--bt-cyan);
}

.bt-shared-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  font: 700 .625rem/1.2 "Syncopate", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bt-shared-links a {
  color: var(--bt-gray);
  transition: color var(--bt-motion-fast) ease;
}

.bt-shared-links a:hover,
.bt-shared-links a[aria-current="page"] {
  color: var(--bt-cyan);
}

.bt-shared-resume {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  flex: 0 0 auto;
  padding: .75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 999px;
  font: 700 .625rem/1.2 "Syncopate", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bt-shared-resume span {
  color: var(--bt-cyan);
}

.bt-shared-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.bt-shared-menu-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.bt-shared-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 6rem 1.5rem 2rem;
  color: #fff;
  background: rgba(5, 7, 12, .985);
  backdrop-filter: blur(18px);
}

.bt-shared-mobile-menu a {
  font: 700 1rem/1.3 "Syncopate", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bt-shared-mobile-menu a[aria-current="page"] {
  color: var(--bt-cyan);
}

.bt-shared-mobile-menu .bt-shared-mobile-resume {
  margin-top: .5rem;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  color: var(--bt-navy);
  background: var(--bt-cyan);
}

.bt-motion-page .coding-solid {
  opacity: 1 !important;
}

.bt-motion-page :where(.coding-outline, .coding-wireframe, .coding-pulse, .coding-cursor) {
  opacity: 0;
}

html.bt-motion [data-bt-reveal="pending"] {
  opacity: 0 !important;
  transform: translate3d(0, var(--bt-distance-sm), 0) !important;
  transition:
    opacity var(--bt-motion-slow) var(--bt-ease-emphasized),
    transform var(--bt-motion-slow) var(--bt-ease-emphasized) !important;
  transition-delay: var(--bt-delay, 0ms) !important;
  will-change: opacity, transform;
}

html.bt-motion [data-bt-reveal="active"] {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

html.bt-motion [data-bt-reveal="done"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

html.bt-motion.bt-leaving body {
  opacity: .985;
  transform: translate3d(0, -4px, 0);
  transition: opacity var(--bt-motion-base) ease, transform var(--bt-motion-base) var(--bt-ease-standard);
}

.bt-motion-page #hero,
.bt-motion-page .section-panel:first-of-type,
.bt-route-resume .min-h-screen:first-of-type {
  isolation: isolate;
}

.bt-hero-system {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint style;
}

.bt-hero-system > * {
  position: absolute;
}

.bt-hero-grid {
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(6, 182, 212, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 65% 50%, #000 0 18%, transparent 70%);
}

.bt-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  border: 1px solid rgba(6, 182, 212, .22);
  border-radius: 999px;
  color: var(--bt-cyan);
  background: rgba(5, 7, 12, .72);
  font: 600 10px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.bt-hero-label::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bt-cyan);
  box-shadow: 0 0 10px var(--bt-cyan);
  content: "";
}

/* Home: Code and Sonar Convergence */
.bt-code-sonar .bt-hero-grid {
  mask-image: radial-gradient(circle at 76% 42%, #000 0 20%, transparent 64%);
}

.bt-sonar-core {
  top: 25%;
  right: 7%;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, .28);
  opacity: .72;
  background:
    radial-gradient(circle, rgba(6, 182, 212, .24) 0 2px, transparent 3px),
    conic-gradient(from 20deg, transparent 0 78%, rgba(6, 182, 212, .18) 94%, transparent 100%);
  box-shadow: inset 0 0 70px rgba(6, 182, 212, .06), 0 0 80px rgba(6, 182, 212, .05);
}

.bt-sonar-core::before,
.bt-sonar-core::after {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(6, 182, 212, .24);
  border-radius: inherit;
  content: "";
}

.bt-sonar-core::after {
  inset: 34%;
}

.bt-code-node {
  color: rgba(255, 255, 255, .62);
  font: 600 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(6px);
  animation: bt-node-in 420ms var(--bt-ease-emphasized) forwards;
}

.bt-code-node:nth-child(3) { top: 31%; right: 31%; animation-delay: 120ms; }
.bt-code-node:nth-child(4) { top: 46%; right: 9%; animation-delay: 240ms; }
.bt-code-node:nth-child(5) { top: 65%; right: 26%; animation-delay: 360ms; }

.bt-code-sonar .bt-hero-label { right: 9%; bottom: 18%; }

/* Profile: Career System Map */
.bt-career-map {
  inset: auto 4% 8% auto;
  width: min(46vw, 610px);
  height: min(44vh, 400px);
}

.bt-career-map .bt-map-line {
  left: 10%;
  right: 10%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .8), transparent);
  transform-origin: left;
  animation: bt-line-build 900ms var(--bt-ease-emphasized) both;
}

.bt-career-map .bt-map-node {
  top: calc(52% - 5px);
  width: 10px;
  height: 10px;
  border: 2px solid var(--bt-cyan);
  border-radius: 50%;
  background: var(--bt-navy);
  box-shadow: 0 0 18px rgba(6, 182, 212, .5);
}

.bt-career-map .bt-map-node::after {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 120px;
  color: #cbd5e1;
  font: 600 9px/1.35 ui-monospace, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: translateX(-50%);
  content: attr(data-label);
}

.bt-career-map .bt-map-node:nth-child(2) { left: 12%; }
.bt-career-map .bt-map-node:nth-child(3) { left: 37%; }
.bt-career-map .bt-map-node:nth-child(4) { left: 62%; }
.bt-career-map .bt-map-node:nth-child(5) { left: 87%; }
.bt-career-map .bt-hero-label { top: 17%; left: 10%; }

/* Services: Business Transformation Pipeline */
.bt-pipeline {
  inset: 10% 3% 10% auto;
  width: min(48vw, 640px);
}

.bt-pipeline-track {
  left: 8%;
  right: 8%;
  top: 52%;
  height: 2px;
  overflow: hidden;
  background: rgba(148, 163, 184, .18);
}

.bt-pipeline-track::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--bt-cyan), transparent);
  transform: translateX(-100%);
  animation: bt-signal-pass 2.8s ease-in-out infinite;
  content: "";
}

.bt-pipeline-stage {
  top: calc(52% - 20px);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(6, 182, 212, .42);
  border-radius: 12px;
  color: var(--bt-cyan);
  background: rgba(5, 7, 12, .8);
  font: 700 10px/1 ui-monospace, monospace;
  box-shadow: 0 0 24px rgba(6, 182, 212, .08);
}

.bt-pipeline-stage::after {
  position: absolute;
  top: 51px;
  left: 50%;
  color: #cbd5e1;
  font: 600 9px/1 ui-monospace, monospace;
  letter-spacing: .08em;
  transform: translateX(-50%);
  content: attr(data-label);
}

.bt-pipeline-stage:nth-child(2) { left: 8%; }
.bt-pipeline-stage:nth-child(3) { left: 33%; }
.bt-pipeline-stage:nth-child(4) { left: 58%; }
.bt-pipeline-stage:nth-child(5) { left: 83%; }
.bt-pipeline .bt-hero-label { top: 25%; left: 8%; }

/* Case studies: Project Deployment Board */
.bt-deployment-board {
  top: 18%;
  right: 4%;
  width: min(30vw, 390px);
  padding: 18px;
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 19, 30, .72), rgba(5, 7, 12, .36));
  box-shadow: 0 20px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
}

.bt-deploy-row {
  position: relative !important;
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #cbd5e1;
  font: 600 10px/1.2 ui-monospace, monospace;
  letter-spacing: .06em;
}

.bt-deploy-row:last-child { border: 0; }
.bt-deploy-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--bt-cyan); box-shadow: 0 0 10px var(--bt-cyan); }
.bt-deploy-row b { color: var(--bt-cyan); font-size: 9px; }
.bt-deployment-board .bt-hero-label { position: relative; margin-bottom: 9px; }

/* Fishing: Sonar and Depth */
.bt-depth-sonar .bt-sonar-core {
  top: 18%;
  right: 9%;
  opacity: .5;
}

.bt-route-ayo-mancing #hero .parallax-bg {
  animation: none !important;
}

.bt-depth-scale {
  top: 14%;
  bottom: 12%;
  right: 4%;
  width: 54px;
  border-right: 1px solid rgba(6, 182, 212, .35);
  background: repeating-linear-gradient(to bottom, transparent 0 29px, rgba(6, 182, 212, .3) 30px 31px);
}

.bt-depth-scale::before,
.bt-depth-scale::after {
  position: absolute;
  right: 8px;
  color: rgba(255, 255, 255, .58);
  font: 600 9px/1 ui-monospace, monospace;
}

.bt-depth-scale::before { top: 0; content: "0M"; }
.bt-depth-scale::after { bottom: 0; content: "60M"; }
.bt-depth-sonar .bt-hero-label { right: 9%; bottom: 16%; }

/* Contact: Signal Handshake */
.bt-handshake {
  inset: 15% 2% 10% 52%;
}

.bt-handshake-line {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(6, 182, 212, .18);
}

.bt-handshake-line::after {
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(90deg, transparent, var(--bt-cyan), #fff, var(--bt-cyan), transparent);
  transform: scaleX(.12);
  animation: bt-handshake 2.4s var(--bt-ease-standard) infinite;
  content: "";
}

.bt-signal-node {
  top: calc(50% - 34px);
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(6, 182, 212, .35);
  border-radius: 50%;
  color: var(--bt-cyan);
  background: rgba(5, 7, 12, .78);
  font: 700 9px/1.2 ui-monospace, monospace;
  letter-spacing: .08em;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(6, 182, 212, .08);
}

.bt-signal-node:nth-child(2) { left: 4%; }
.bt-signal-node:nth-child(3) { right: 4%; }
.bt-handshake .bt-hero-label { left: 50%; top: 30%; transform: translateX(-50%); }

/* Resume: Career Compilation */
.bt-career-compile {
  right: 3%;
  bottom: 8%;
  width: min(38vw, 480px);
  padding: 15px 18px;
  border: 1px solid rgba(6, 182, 212, .16);
  border-radius: 14px;
  background: rgba(3, 7, 18, .7);
  backdrop-filter: blur(10px);
  color: #cbd5e1;
  font: 600 10px/1.7 ui-monospace, monospace;
}

.bt-compile-row {
  position: relative !important;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.bt-compile-row b { color: #22c55e; font-weight: 700; }
.bt-compile-progress { position: relative !important; height: 2px; margin-top: 8px; overflow: hidden; background: rgba(255,255,255,.08); }
.bt-compile-progress::after { position: absolute; inset: 0; background: var(--bt-cyan); transform-origin: left; animation: bt-line-build 900ms var(--bt-ease-emphasized) both; content: ""; }

.bt-counter-ready {
  font-variant-numeric: tabular-nums;
}

.bt-motion-page .faq-item[aria-expanded="true"] .faq-icon {
  color: var(--bt-cyan);
  transform: rotate(45deg);
}

.bt-motion-page .faq-icon {
  transition: transform var(--bt-motion-base) var(--bt-ease-emphasized), color var(--bt-motion-fast) ease;
}

.bt-motion-page .faq-content.bt-faq-open {
  height: auto !important;
  max-height: 700px !important;
  margin-top: 1rem !important;
  opacity: 1 !important;
  overflow: visible;
}

.bt-motion-page .faq-content:not(.bt-faq-open) {
  height: 0 !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  opacity: 0 !important;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .bt-route-layanan #layanan-tabs .tabs-left {
    position: sticky;
    top: 7rem;
    align-self: flex-start;
  }

  .bt-route-studi-kasus #featured .case-card {
    position: sticky;
    top: 7rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .bt-motion-page #premium-cursor,
  .bt-motion-page #sonar-cursor {
    display: block;
  }

  .bt-motion-page [data-bt-tilt] {
    transform: perspective(900px) rotateX(var(--bt-tilt-x, 0deg)) rotateY(var(--bt-tilt-y, 0deg));
    transition: transform var(--bt-motion-base) var(--bt-ease-standard), border-color var(--bt-motion-fast) ease;
    transform-style: preserve-3d;
  }
}

@media (hover: none), (pointer: coarse) {
  .bt-motion-page,
  .bt-motion-page * {
    cursor: auto !important;
  }

  .bt-motion-page #premium-cursor,
  .bt-motion-page #sonar-cursor {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .bt-motion-page .floating-social-media,
  .bt-motion-page [class*="right-2"][class*="top-1/2"][class*="mix-blend"] {
    display: none !important;
  }

  .bt-motion-page #custom-scroll-top {
    right: 1rem !important;
    bottom: 1rem !important;
  }

  .bt-motion-page #hero,
  .bt-motion-page .section-panel:first-of-type,
  .bt-route-resume .min-h-screen:first-of-type {
    min-height: auto !important;
    padding-top: 7.5rem !important;
    padding-bottom: 5rem !important;
  }

  .bt-motion-page .section-panel:first-of-type > div {
    padding-bottom: 7rem !important;
  }

  .bt-motion-page .text-display,
  .bt-motion-page #hero h1,
  .bt-route-resume #rx-hero-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.6vw, 3.5rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
    white-space: normal !important;
  }

  .bt-route-studi-kasus #hero h1 {
    font-size: clamp(2rem, 9vw, 2.4rem) !important;
  }

  .bt-route-resume #rx-hero-title {
    margin-top: .7rem !important;
  }

  .bt-motion-page .hero-btns,
  .bt-motion-page #hero .flex-wrap {
    row-gap: .9rem;
  }

  .bt-motion-page .hero-btns a,
  .bt-motion-page #hero .magnetic-btn,
  .bt-motion-page #hero .primary-btn,
  .bt-motion-page #hero .outline-btn {
    min-height: 46px;
  }

  .bt-hero-system {
    opacity: .55;
  }

  .bt-sonar-core {
    top: 18%;
    right: -22%;
    width: 78vw;
  }

  .bt-code-node,
  .bt-deployment-board,
  .bt-career-map,
  .bt-pipeline,
  .bt-handshake,
  .bt-career-compile,
  .bt-depth-scale {
    display: none;
  }

  .bt-code-sonar .bt-hero-label,
  .bt-depth-sonar .bt-hero-label {
    right: 1rem;
    bottom: 1.5rem;
  }

  .bt-route-layanan #layanan-tabs .tabs-left,
  .bt-route-studi-kasus #featured .case-card {
    position: static !important;
  }

  .bt-shared-nav {
    min-height: 74px;
    padding: 1rem 1.25rem;
  }

  .bt-shared-brand {
    max-width: calc(100% - 58px);
    font-size: .9rem;
  }

  .bt-shared-links,
  .bt-shared-resume {
    display: none;
  }

  .bt-shared-menu-button {
    display: grid;
    flex: 0 0 auto;
  }

}

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

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  html.bt-motion [data-bt-reveal] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }

  .bt-motion-page #premium-cursor,
  .bt-motion-page #sonar-cursor,
  .bt-sonar-core::before,
  .bt-sonar-core::after {
    display: none !important;
  }
}

@keyframes bt-page-in {
  from { opacity: .985; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bt-page-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: .985; transform: translateY(-4px); }
}

@keyframes bt-node-in {
  to { opacity: .7; transform: translateY(0); }
}

@keyframes bt-line-build {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes bt-signal-pass {
  0%, 20% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}

@keyframes bt-handshake {
  0%, 100% { opacity: .25; transform: scaleX(.12); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* v1.2.0 UI/UX polish for cinematic sections.
   Keep the dramatic identity, but prevent large type and telemetry art from
   crowding copy, controls, and viewport edges. */
.bt-motion-page {
  --bt-gutter: clamp(1.375rem, 4vw, 5rem);
  --bt-content-max: 1160px;
}

.bt-motion-page main,
.bt-motion-page .entry-content,
.bt-motion-page .site-main {
  overflow-x: clip;
}

.bt-motion-page .container-box {
  width: min(calc(100% - (var(--bt-gutter) * 2)), var(--bt-content-max));
  margin-inline: auto;
}

.bt-motion-page :where(#hero h1, #hero h2, .text-display, .font-display, .scroll-split-title, .split-reveal) {
  letter-spacing: 0 !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.bt-motion-page :where(.hero-desc, .hero-p, .rx-text-body, section p) {
  text-wrap: pretty;
}

.bt-motion-page .floating-social-media {
  right: clamp(.875rem, 1.7vw, 1.75rem) !important;
  opacity: .74;
  transition: opacity var(--bt-motion-fast) ease, transform var(--bt-motion-base) var(--bt-ease-standard);
}

.bt-motion-page .floating-social-media:hover,
.bt-motion-page .floating-social-media:focus-within {
  opacity: 1;
}

.bt-global-footer {
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) var(--bt-gutter) clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #f8fafc;
  background:
    radial-gradient(circle at 16% 0%, rgba(6, 182, 212, .12), transparent 34rem),
    linear-gradient(180deg, rgba(5, 7, 12, .96), #03070b);
}

.bt-global-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(6, 182, 212, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 74%);
  content: "";
}

.bt-global-footer__inner,
.bt-global-footer__meta {
  position: relative;
  width: min(100%, var(--bt-content-max));
  margin-inline: auto;
}

.bt-global-footer__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.bt-global-footer__brand a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font: 700 clamp(.95rem, 1vw, 1.1rem)/1.2 "Syncopate", sans-serif;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.bt-global-footer__brand a span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-cyan);
  box-shadow: 0 0 12px var(--bt-cyan);
}

.bt-global-footer__brand p {
  max-width: 48ch;
  margin: 1.35rem 0 0;
  color: rgba(203, 213, 225, .78);
  font-size: clamp(.95rem, .9rem + .18vw, 1.05rem);
  line-height: 1.75;
}

.bt-global-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: .8rem 1.6rem;
}

.bt-global-footer__nav a {
  color: rgba(226, 232, 240, .74);
  font: 700 .68rem/1.4 "Syncopate", sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--bt-motion-fast) ease, transform var(--bt-motion-fast) ease;
}

.bt-global-footer__nav a:hover,
.bt-global-footer__nav a:focus-visible {
  color: var(--bt-cyan);
  transform: translateX(3px);
}

.bt-global-footer__cta {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.bt-global-footer__cta span {
  color: var(--bt-cyan);
  font: 700 .68rem/1.4 "Syncopate", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bt-global-footer__cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.35rem;
  border: 1px solid rgba(6, 182, 212, .34);
  border-radius: 999px;
  color: #02080d;
  background: var(--bt-cyan);
  box-shadow: 0 16px 42px rgba(6, 182, 212, .16);
  font: 800 .7rem/1.2 "Syncopate", sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--bt-motion-fast) ease, transform var(--bt-motion-fast) ease;
}

.bt-global-footer__cta a:hover,
.bt-global-footer__cta a:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.bt-global-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.25rem, 4vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(148, 163, 184, .72);
  font: 600 .72rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
}

.bt-motion-page .bt-hero-label {
  z-index: 3;
  max-width: min(280px, 44vw);
  white-space: nowrap;
}

.bt-route-home #play-music-btn {
  z-index: 5;
}

.bt-route-home .bt-code-sonar .bt-hero-label {
  right: clamp(8rem, 18vw, 18rem);
  bottom: clamp(14rem, 38vh, 22rem);
}

.bt-route-home main section:nth-of-type(2) .text-display {
  max-width: 760px;
  font-size: clamp(3.4rem, 5.5vw, 4.9rem) !important;
  line-height: 1.02 !important;
}

.bt-route-home main section:nth-of-type(2) p {
  max-width: 620px;
}

.bt-route-profil #hero h1 {
  max-width: min(780px, 64vw);
  font-size: clamp(4rem, 6.3vw, 5.25rem) !important;
  line-height: 1.02 !important;
}

.bt-route-profil #hero h2 {
  font-size: clamp(2.75rem, 4.3vw, 3.75rem) !important;
  line-height: 1.05 !important;
}

.bt-route-profil #hero p {
  max-width: 760px;
}

.bt-route-profil #three-worlds .panel-text {
  max-width: min(760px, 72vw);
}

.bt-route-profil #three-worlds .panel h2 {
  font-size: clamp(3.8rem, 6.5vw, 5.15rem) !important;
  line-height: 1.02 !important;
}

.bt-route-profil #three-worlds .panel p {
  max-width: 760px;
  margin-inline: auto;
}

.bt-route-profil .scroll-split-title {
  max-width: 980px;
}

.bt-route-layanan #hero h1 {
  max-width: min(760px, 64vw);
  font-size: clamp(3.6rem, 6vw, 4.85rem) !important;
  line-height: 1.02 !important;
}

.bt-route-layanan #hero h2 {
  font-size: clamp(2.65rem, 4.3vw, 3.55rem) !important;
  line-height: 1.06 !important;
}

.bt-route-layanan #transformation {
  padding-block: clamp(6rem, 10vw, 9rem) !important;
}

.bt-route-layanan #transformation .container-box {
  align-items: flex-start;
  gap: clamp(3rem, 7vw, 7rem);
}

.bt-route-layanan #transformation .trans-text {
  flex: 0 0 min(54%, 660px) !important;
  width: min(54%, 660px) !important;
}

.bt-route-layanan #transformation h2 {
  font-size: clamp(2.75rem, 3.65vw, 4.05rem) !important;
  line-height: 1.02 !important;
}

.bt-route-layanan #transformation h2 + h2 {
  margin-top: clamp(1.25rem, 2.4vw, 2rem) !important;
}

.bt-route-layanan #transformation .font-serif {
  font-size: clamp(2.65rem, 3.7vw, 4.15rem) !important;
  line-height: 1.08 !important;
}

.bt-route-studi-kasus .bt-deployment-board,
.bt-route-resume .bt-career-compile {
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  height: auto !important;
}

.bt-route-studi-kasus .bt-deployment-board {
  top: auto !important;
  bottom: clamp(4.25rem, 9vh, 6.25rem) !important;
  right: clamp(3rem, 5vw, 6rem) !important;
  width: min(320px, 24vw) !important;
  opacity: .52;
}

.bt-route-studi-kasus #hero .container-box {
  max-width: 1040px;
}

.bt-route-studi-kasus #hero h1 {
  max-width: 1060px;
  margin-inline: auto;
  font-size: clamp(4.2rem, 7.3vw, 6.35rem) !important;
  line-height: .98 !important;
}

.bt-route-studi-kasus #hero p {
  max-width: 760px;
}

.bt-route-studi-kasus :where(.case-card, .glass-box) {
  border-radius: clamp(1.125rem, 1.7vw, 1.75rem) !important;
}

.bt-route-studi-kasus .case-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.bt-route-studi-kasus .case-card p {
  max-width: 62ch;
}

.bt-route-studi-kasus :where(.rx-kpi-num, .counter-val, .counter) {
  font-variant-numeric: tabular-nums;
}

.bt-route-kontak #why-me h2 {
  max-width: 1120px !important;
  font-size: clamp(3.45rem, 5.35vw, 5.1rem) !important;
  line-height: 1.04 !important;
}

.bt-route-kontak #why-me .mb-24 {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem) !important;
}

.bt-route-kontak .bento-card {
  border-radius: clamp(1.125rem, 1.8vw, 1.75rem) !important;
}

.bt-route-kontak #hero h1 {
  max-width: 820px;
  white-space: normal !important;
  font-size: clamp(4rem, 6.5vw, 5.4rem) !important;
  line-height: 1.02 !important;
}

.bt-route-kontak .bt-handshake {
  opacity: .7;
}

.bt-route-resume .bt-career-compile {
  right: clamp(3rem, 5vw, 6rem) !important;
  bottom: clamp(3.5rem, 8vh, 5rem) !important;
  width: min(430px, 34vw) !important;
  opacity: .9;
}

.bt-route-resume #rx-hero-title {
  max-width: 820px;
  font-size: clamp(4rem, 6.2vw, 5.75rem) !important;
  line-height: 1.02 !important;
}

/* v1.2.3 focused section refinements. */
.bt-route-layanan #transformation {
  min-height: auto !important;
  padding-block: clamp(4.25rem, 6vw, 6.25rem) !important;
}

.bt-route-layanan #transformation .container-box {
  min-height: 0 !important;
  align-items: center !important;
}

.bt-route-layanan #transformation .trans-text {
  flex-basis: min(50%, 620px) !important;
  width: min(50%, 620px) !important;
}

.bt-route-layanan #transformation h2 {
  font-size: clamp(2.45rem, 3.2vw, 3.65rem) !important;
}

.bt-route-layanan #transformation .font-serif {
  font-size: clamp(2.45rem, 3.25vw, 3.75rem) !important;
}

.bt-route-layanan #pillars,
.bt-route-layanan #layanan-tabs,
.bt-route-layanan #process,
.bt-route-layanan #faq {
  padding-block: clamp(4.25rem, 6vw, 6.5rem) !important;
}

.bt-route-layanan #cases {
  padding-top: clamp(4.25rem, 6vw, 6.5rem) !important;
}

.bt-route-profil #hero {
  min-height: clamp(720px, 92vh, 880px) !important;
  padding-top: clamp(7.25rem, 10vh, 8.5rem) !important;
  padding-bottom: clamp(4rem, 7vh, 5.25rem) !important;
}

.bt-route-profil #hero .container-box {
  max-width: 1280px;
  display: grid !important;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .76fr);
  gap: clamp(2.25rem, 4.5vw, 4.75rem) !important;
  align-items: center !important;
}

.bt-route-profil #hero .hero-text,
.bt-route-profil #hero .cinematic-portrait {
  width: 100% !important;
  min-width: 0;
}

.bt-route-profil #hero h1 {
  max-width: 580px !important;
  font-size: clamp(3.25rem, 4.35vw, 4.35rem) !important;
  line-height: 1.04 !important;
  letter-spacing: .01em !important;
}

.bt-route-profil #hero h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 3.6vw, 3.45rem) !important;
}

.bt-route-profil #hero p {
  max-width: 600px !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.bt-route-profil #hero .cinematic-portrait {
  height: min(62vh, 610px) !important;
  justify-content: flex-end !important;
  z-index: 1;
}

.bt-route-profil #hero .hero-text {
  position: relative;
  z-index: 2;
}

.bt-route-profil #hero .cinematic-portrait > .relative {
  max-width: min(100%, 500px) !important;
  height: min(62vh, 610px) !important;
  border-radius: 24px !important;
}

.bt-route-studi-kasus .bt-deployment-board {
  display: none !important;
}

.bt-route-studi-kasus #hero {
  min-height: clamp(700px, 88vh, 820px) !important;
  padding-top: clamp(7.25rem, 10vh, 8.5rem) !important;
  padding-bottom: clamp(4.25rem, 7vh, 5.5rem) !important;
}

.bt-route-studi-kasus #hero .container-box {
  max-width: 1120px !important;
}

.bt-route-studi-kasus #hero h1 {
  max-width: 1040px !important;
  font-size: clamp(3.55rem, 6.15vw, 5.8rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.015em !important;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem) !important;
}

.bt-route-studi-kasus #hero h1 .hero-line {
  display: block;
}

.bt-route-studi-kasus #hero p {
  max-width: 720px !important;
  margin-bottom: 0 !important;
}

.bt-route-studi-kasus #hero .reveal-el:has(a[href="#featured"]) {
  display: none !important;
}

.bt-route-studi-kasus a[href="#"]:has(.w-8),
.bt-route-studi-kasus a[href="#"]:has(span) {
  display: none !important;
}

.bt-route-studi-kasus section:has(.dash-path) .glass-box,
.bt-route-studi-kasus section:has(.dash-bar) .glass-box {
  background: linear-gradient(180deg, rgba(8, 19, 30, .82), rgba(3, 9, 14, .9)) !important;
  border: 1px solid rgba(6, 182, 212, .13) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22) !important;
}

.bt-route-studi-kasus section:has(.dash-path) .grid,
.bt-route-studi-kasus section:has(.dash-bar) .grid {
  align-items: stretch;
}

.bt-route-studi-kasus section:has(.dash-path) .glass-box:has(svg),
.bt-route-studi-kasus section:has(.dash-bar) .glass-box:has(.dash-bar) {
  min-height: 300px;
}

.bt-route-studi-kasus section:has(.dash-path) .h-\[150px\],
.bt-route-studi-kasus section:has(.dash-bar) .h-\[150px\] {
  height: clamp(170px, 15vw, 220px) !important;
  margin-top: 1rem;
  border-color: rgba(148, 163, 184, .18) !important;
  background:
    linear-gradient(rgba(6, 182, 212, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .08) 1px, transparent 1px);
  background-size: 20% 25%;
}

.bt-route-studi-kasus section:has(.dash-path) svg {
  display: block;
  overflow: visible;
}

.bt-route-studi-kasus .dash-path {
  stroke-width: .8 !important;
  filter: drop-shadow(0 0 4px rgba(6, 182, 212, .55));
}

.bt-route-studi-kasus .dash-bar {
  min-width: 8px;
  transition: width 900ms var(--bt-ease-emphasized), height 900ms var(--bt-ease-emphasized);
}

.bt-route-kontak #hero {
  min-height: clamp(700px, 88vh, 840px) !important;
  padding-top: clamp(7rem, 10vh, 8.5rem) !important;
  padding-bottom: clamp(4rem, 7vh, 5rem) !important;
}

.bt-route-kontak #hero .container-box {
  max-width: 1240px;
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.bt-route-kontak #hero h1 {
  max-width: 760px !important;
  font-size: clamp(3.6rem, 5.65vw, 5.2rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.01em !important;
}

.bt-route-kontak #hero p {
  max-width: 620px !important;
  font-size: clamp(1.05rem, 1vw, 1.18rem) !important;
}

.bt-route-kontak #hero .primary-btn,
.bt-route-kontak #hero .outline-btn,
.bt-route-kontak #hero .magnetic-btn {
  min-height: 50px;
}

.bt-route-kontak #hero .bt-handshake {
  opacity: .42;
}

@media (min-width: 1480px) {
  .bt-route-home main section:nth-of-type(2) .text-display {
    font-size: clamp(4rem, 5vw, 5.5rem) !important;
  }

  .bt-route-profil #three-worlds .panel h2 {
    font-size: clamp(4.2rem, 5.7vw, 5.8rem) !important;
  }

  .bt-route-studi-kasus #hero h1 {
    font-size: clamp(5rem, 6.2vw, 7rem) !important;
  }

  .bt-route-kontak #why-me h2 {
    font-size: clamp(4rem, 4.8vw, 5.6rem) !important;
  }
}

@media (max-width: 1180px) {
  .bt-motion-page .floating-social-media {
    opacity: .52;
  }

  .bt-route-home .bt-code-sonar .bt-hero-label {
    right: 2rem;
    bottom: 11rem;
  }

  .bt-route-studi-kasus .bt-deployment-board,
  .bt-route-resume .bt-career-compile {
    display: none;
  }
}

@media (max-width: 767px) {
  .bt-motion-page .container-box {
    width: min(calc(100% - 2.5rem), var(--bt-content-max));
  }

  .bt-motion-page :where(#hero h1, #hero h2, .text-display, .font-display, .scroll-split-title, .split-reveal) {
    font-size: clamp(2.15rem, 10vw, 3.35rem) !important;
    line-height: 1.08 !important;
  }

  .bt-route-home .bt-code-sonar .bt-hero-label {
    display: none;
  }

  .bt-route-home .nav-header {
    padding: 1rem 1.25rem !important;
  }

  .bt-route-home .nav-header > a:first-child {
    max-width: calc(100vw - 92px);
    min-width: 0;
    font-size: .95rem !important;
    line-height: 1.18 !important;
    white-space: normal;
  }

  .bt-route-home .mobile-menu-overlay .font-display {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
  }

  .bt-route-home main > .section-panel:first-of-type {
    overflow: hidden;
    padding-inline: 1.35rem !important;
  }

  .bt-route-home main > .section-panel:first-of-type > .z-10 {
    width: 100% !important;
    max-width: calc(100vw - 2.7rem) !important;
    min-width: 0;
    align-items: flex-start !important;
    padding-bottom: 4.5rem !important;
  }

  .bt-route-home main > .section-panel:first-of-type .max-w-3xl,
  .bt-route-home main > .section-panel:first-of-type .w-full {
    min-width: 0;
  }

  .bt-route-home main > .section-panel:first-of-type h1 {
    width: 100%;
  }

  .bt-route-home main > .section-panel:first-of-type h1 .relative.w-max {
    max-width: 100%;
  }

  .bt-route-home main > .section-panel:first-of-type .hero-desc {
    display: block !important;
    width: min(100%, 20.5rem) !important;
    max-width: min(100%, 20.5rem) !important;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: pretty;
  }

  .bt-route-home main > .section-panel:first-of-type .hero-desc :where(span, div) {
    max-width: 100% !important;
    white-space: normal !important;
  }

  .bt-route-home main > .section-panel:first-of-type .hero-btns {
    width: min(100%, 20.5rem) !important;
    max-width: min(100%, 20.5rem) !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: .9rem !important;
  }

  .bt-route-home main > .section-panel:first-of-type .hero-btns a {
    max-width: 100%;
    white-space: normal;
  }

  .bt-route-home main > .section-panel:first-of-type .hero-btns .magnetic-btn {
    width: min(100%, 230px);
    justify-content: space-between;
    padding-inline: 1.25rem !important;
  }

  .bt-route-home #play-music-btn {
    align-self: center;
    margin-inline: auto !important;
    margin-bottom: 2rem !important;
  }

  .bt-route-profil #hero h1,
  .bt-route-layanan #hero h1,
  .bt-route-kontak #hero h1,
  .bt-route-resume #rx-hero-title {
    max-width: 100%;
  }

  .bt-route-profil #hero h2,
  .bt-route-layanan #hero h2,
  .bt-route-layanan #transformation .font-serif {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }

  .bt-route-profil #three-worlds .panel-text,
  .bt-route-layanan #transformation .trans-text {
    width: 100% !important;
    max-width: 100%;
  }

  .bt-route-layanan #transformation .container-box {
    gap: 2rem;
  }

  .bt-route-kontak #why-me h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem) !important;
  }

  .bt-route-layanan #transformation,
  .bt-route-layanan #pillars,
  .bt-route-layanan #layanan-tabs,
  .bt-route-layanan #cases,
  .bt-route-layanan #process,
  .bt-route-layanan #faq {
    padding-block: clamp(3.5rem, 10vw, 4.75rem) !important;
  }

  .bt-route-layanan #transformation .trans-text {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .bt-route-profil #hero,
  .bt-route-studi-kasus #hero,
  .bt-route-kontak #hero {
    min-height: auto !important;
  }

  .bt-route-profil #hero .container-box,
  .bt-route-kontak #hero .container-box {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 2rem !important;
  }

  .bt-route-profil #hero h1,
  .bt-route-studi-kasus #hero h1,
  .bt-route-kontak #hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.55rem) !important;
    line-height: 1.08 !important;
  }

  .bt-route-profil #hero h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
  }

  .bt-route-profil #hero .cinematic-portrait,
  .bt-route-profil #hero .cinematic-portrait > .relative {
    height: min(60vh, 460px) !important;
  }

  .bt-route-studi-kasus section:has(.dash-path) .glass-box,
  .bt-route-studi-kasus section:has(.dash-bar) .glass-box {
    min-height: 0;
  }

  .bt-route-studi-kasus section:has(.dash-path) .h-\[150px\],
  .bt-route-studi-kasus section:has(.dash-bar) .h-\[150px\] {
    height: 170px !important;
  }

  .bt-global-footer {
    padding-inline: 1.25rem;
  }

  .bt-global-footer__inner {
    grid-template-columns: 1fr;
  }

  .bt-global-footer__nav {
    grid-template-columns: 1fr;
  }

  .bt-global-footer__meta {
    flex-direction: column;
  }
}
