/* =========================================================
   Lajur — halaman pemasaran (klon bahasa visual, putaran v3)
   Satuan desktop mengikuti kanvas 1440 px, kontainer 1280 px.
   Gerak: durasi/easing/keyframe diambil dari fakta gerak acuan.
   ========================================================= */

:root {
  --bg: #08090a;
  --surface: #101112;
  --surface-2: #161718;
  --text: #f7f8f8;
  --text-2: #d0d6e0;
  --text-3: #8a8f98;
  --text-4: #62666d;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --win: #23252a;
  --chip: #2e2e32;
  --accent: #e4f222;
  --green: #27a644;
  --red: #f34e52;
  --indigo: #6d78d5;
  --yellow: #f2c94c;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --gut: 32px;
  /* easing dari fakta gerak acuan */
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-menu: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color-scheme: dark; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
svg { display: block; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em, i { font-style: normal; }
b { font-weight: 510; }

.container { width: min(1280px, calc(100% - 2 * var(--gut))); margin-inline: auto; }

/* ---------- utilitas warna & ikon ---------- */
.ic { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ic--14 { width: 14px; height: 14px; }
.ic--12 { width: 12px; height: 12px; }
.ic--10 { width: 10px; height: 10px; }
.c-2 { color: var(--text-2); }
.c-3 { color: var(--text-3); }
.c-4 { color: var(--text-4); }
.c-yellow, .c-star { color: var(--yellow); }
.c-green { color: #4cb782; }
.c-red { color: #eb5757; }
.c-indigo { color: #7a84e0; }
.c-orange { color: #f0883e; }

.arr { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.16s ease; }

/* ---------- tipografi bersama ---------- */
.h2 { font-size: 48px; line-height: 48px; font-weight: 510; letter-spacing: -1.06px; color: var(--text); }
.tlink { display: flex; width: max-content; align-items: center; gap: 7px; font-size: 15px; line-height: 24px; color: var(--text-3); transition: color 0.16s ease; }
.tlink:hover { color: var(--text); }
.tlink:hover .arr { transform: translateX(2px); }

.btn { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 20px; border-radius: 9999px; font-size: 16px; font-weight: 510; letter-spacing: -0.1px; white-space: nowrap; transition: background-color 0.16s ease, color 0.16s ease; }
.btn--light { background: #e2e4e7; color: #08090a; }
.btn--light:hover { background: #f7f8f8; }
.btn--dark { background: #161718; color: var(--text); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.btn--dark:hover { background: #1c1d1f; }
.btn--nav { height: 32px; padding: 0 12px; font-size: 14px; background: #e2e4e7; color: #08090a; }
.btn--nav:hover { background: #f7f8f8; }

/* ---------- keyframes (dari fakta gerak acuan) ---------- */
/* animasi muat hero berjalan lewat Web Animations API di script.js; ini cadangan bila skrip gagal */
@keyframes showLate { to { opacity: 1; } }
html.js:not(.motion-ready) .stage__band, html.js:not(.motion-ready) .stage__shade, html.js:not(.motion-ready) .side,
html.js:not(.motion-ready) .pane, html.js:not(.motion-ready) .app__chrome { opacity: 0; animation: showLate 1ms linear 3000ms forwards; }
@keyframes shimmer { 0% { background-position: 100% 0; } 75% { background-position: 0% 0; } 99.999% { background-position: 0% 0; } 100% { background-position: 100% 0; } }
@keyframes caretBlink { 0% { opacity: 1; } 49% { opacity: 1; } 50% { opacity: 0; } 99% { opacity: 0; } 100% { opacity: 1; } }
@keyframes dotIn { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes marquee { from { transform: translate(0px); } to { transform: translateX(calc(-100% - 40px)); } }
@keyframes marqueeAbs { from { transform: translateX(calc(100% + 40px)); } to { transform: translate(0px); } }

/* =========================================================
   Navigasi
   ========================================================= */
.nav { position: relative; z-index: 20; height: 73px; border-bottom: 1px solid var(--line); background: var(--bg); }
.nav__in { position: relative; height: 100%; display: flex; align-items: center; }
.brand { display: flex; align-items: center; gap: 9px; color: var(--text); }
.brand__mk { width: 22px; height: 22px; }
.brand__wm { font-size: 20px; line-height: 24px; font-weight: 560; letter-spacing: -0.5px; }
.nav__links { margin-left: auto; }
.nav__list { display: flex; align-items: center; }
.nav__login { font-size: 13px; line-height: 20px; color: var(--text-3); transition: color 0.16s ease; }
.nav__login:hover { color: var(--text); }
/* pemicu & tautan: kotak 32 px, padding 12 px — posisi teks sama dengan tata letak lama (celah 24 px) */
.nav__trigger, .nav__link {
  position: relative; display: flex; align-items: center; height: 32px; padding: 0 12px; border-radius: 9999px;
  font-size: 13px; line-height: 20px; font-weight: 400; color: var(--text-3); white-space: nowrap;
  transition: background 0.1s var(--ease-menu), color 0.1s var(--ease-menu);
}
.nav__trigger:hover, .nav__link:hover { color: var(--text); }
.nav__item.is-open > .nav__trigger { background-color: rgba(255, 255, 255, 0.06); color: var(--text); }
.nav__trigger:focus-visible, .nav__link:focus-visible { outline-offset: 0; }
.nav__sep { width: 1px; height: 16px; margin: 0 26px 0 14px; background: rgba(255, 255, 255, 0.1); }
.nav__login { margin-right: 20px; }
.nav__slot { display: none; }
.nav__burger { display: none; place-items: center; width: 32px; height: 32px; }
.nav__burger svg { width: 16px; height: 16px; }
.bl { transition: visibility 0.16s var(--ease-menu), transform 0.16s var(--ease-menu); transform-box: fill-box; transform-origin: center; }
/* ikon garis → silang saat menu terbuka */
.menu-open .bl[y="4.6"] { transform: translateY(2.7px) rotate(45deg); }
.menu-open .bl[y="10"] { transform: translateY(-2.7px) rotate(-45deg); }
.bl--a { fill: var(--text-2); }
.bl--b { fill: var(--text); visibility: hidden; }
.is-scrolled .bl--a { visibility: hidden; }
.is-scrolled .bl--b { visibility: inherit; }
.nav__fixed { display: none; }

/* ---------- panel dropdown desktop (rata kanan grup navigasi, 12 px di bawah pemicu) ---------- */
.dd {
  position: absolute; z-index: 30; top: 64px; right: -1px; width: 858px;
  padding: 8px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px;
  background: rgba(8, 9, 10, 0.9); box-shadow: 0 8px 32px 0 #08090a;
  -webkit-backdrop-filter: blur(32px); backdrop-filter: blur(32px);
  opacity: 0; visibility: hidden; transform: scale(0.98); transform-origin: 50% 50%;
  transition: opacity 0.15s var(--ease-menu), transform 0.15s var(--ease-menu), visibility 0s linear 0.15s;
}
/* jembatan hover: celah pemicu → panel tidak menutup panel */
.dd::before { content: ""; position: absolute; left: 0; right: 0; top: -13px; height: 12px; }
.nav__item.is-open > .dd { opacity: 1; visibility: visible; transform: none; transition: opacity 0.2s var(--ease-menu), transform 0.2s var(--ease-menu), visibility 0s; }
.dd.is-instant { transition: none !important; }
.dd.is-morph { overflow: hidden; transition: height 0.22s ease, width 0.22s ease !important; }
.dd.is-morph::before { display: none; }
/* tanpa JS: tetap terbuka lewat :hover / :focus-within */
html:not(.nav-ready) .nav__item--dd:hover > .dd, html:not(.nav-ready) .nav__item--dd:focus-within > .dd { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
html:not(.nav-ready) .nav__item--dd:hover > .nav__trigger, html:not(.nav-ready) .nav__item--dd:focus-within > .nav__trigger { background-color: rgba(255, 255, 255, 0.06); color: var(--text); }

.dd__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 6px; background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05); }
.dd__col { position: relative; display: flex; flex-direction: column; gap: 5px; padding: 14px 12px 13px; }
.dd__col:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 12px; bottom: 12px; width: 1px; background: rgba(255, 255, 255, 0.05); }
.dd__col--list { gap: 0.67px; padding-top: 16px; }
.dd__card, .dd__link { display: block; border-radius: 8px; transition: background-color 0.1s var(--ease-menu), color 0.1s var(--ease-menu); }
.dd__card { padding: 12px 24px 12px 16px; }
.dd__t { display: block; font-size: 13px; line-height: 20px; font-weight: 510; color: var(--text-2); transition: color 0.1s var(--ease-menu); }
.dd__d { display: block; margin-top: 4px; font-size: 13px; line-height: 19.5px; color: var(--text-3); }
.dd__link { padding: 10px 24px 10px 16px; font-size: 13px; line-height: 20px; color: var(--text-2); }
.dd__link span { display: block; }
.dd__card:hover, .dd__link:hover { background-color: rgba(255, 255, 255, 0.04); }
.dd__card:hover .dd__t, .dd__link:hover { color: var(--text); }
.dd__foot { margin-top: 8px; }
.dd__news { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 28px; border-radius: 6px; font-size: 13px; line-height: 20px; color: var(--text-3); transition: background-color 0.1s var(--ease-menu); }
.dd__news-l, .dd__news-r { display: flex; align-items: center; gap: 6px; }
.dd__news b { color: var(--text-2); }
.dd__arr { display: inline-block; color: var(--text-4); transition: transform 0.16s ease; }
.dd__news:hover { background-color: rgba(255, 255, 255, 0.03); }
.dd__news:hover .dd__news-r { color: var(--text-2); }
.dd__news:hover .dd__arr { transform: translateX(2px); }
.dd a:focus-visible { outline-offset: -2px; }

/* ---------- menu layar penuh tablet & ponsel ---------- */
.mnav { display: none; }
@keyframes mnavIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mnavOut { from { opacity: 1; } to { opacity: 0; } }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding-top: 198px; }
.hero__title { font-size: 64px; line-height: 64px; font-weight: 510; letter-spacing: -1.41px; color: var(--text); }
.hero__row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 33px; }
.hero__sub { font-size: 14px; line-height: 24px; color: var(--text-3); }
.hero__news { display: flex; align-items: center; font-size: 15px; line-height: 24px; color: var(--text-3); transition: color 0.16s ease; }
.hero__news b { color: var(--text); margin-right: 13px; }
.hero__news .arr { margin-left: 7px; }
.hero__news:hover { color: var(--text); }
.hero__news:hover .arr { transform: translateX(2px); }

.stage { position: relative; margin-top: 72px; height: 768px; }
.stage__band {
  position: absolute; left: 12px; right: 12px; top: 0; bottom: 0;
  background:
    radial-gradient(48% 34% at 50% 100%, rgba(170, 171, 176, 0.5), rgba(170, 171, 176, 0) 100%),
    linear-gradient(180deg, #08090a 0%, #0b0c0d 28%, #121315 48%, #1f2023 66%, #36373b 84%, #57585c 100%);
}
.stage__shade {
  position: absolute; left: 0; right: 0; top: -36px; bottom: 0; pointer-events: none;
  background: radial-gradient(70% 45% at 50% 100%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 70%);
}
.stage__win { position: absolute; top: 0; left: 50%; margin-left: -660px; width: 1320px; }
.stage__veil { position: absolute; left: 0; top: 0; width: 0; height: 0; z-index: 3; pointer-events: none; opacity: 0; }
.stage__veil::before { content: ""; position: absolute; left: 0; top: 0; width: 1320px; height: 720px; border-radius: 12px; background: var(--bg); }

/* ---------- jendela aplikasi (mockup) ---------- */
.app {
  position: relative; width: 1320px; height: 720px;
  border: 1px solid transparent; border-radius: 12px;
  color: var(--text-2); font-size: 13px; line-height: 20px; letter-spacing: -0.04px; word-spacing: 0.6px; text-align: left;
}
.app__chrome {
  position: absolute; inset: -1px; border-radius: 12px; background: #0f1011; border: 1px solid var(--win);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.side { position: absolute; left: 0; top: 0; bottom: 0; width: 240px; padding: 15px 16px 0; }
.side__head { display: flex; align-items: center; gap: 6px; height: 28px; }
.side__ws { display: flex; align-items: center; gap: 8px; margin-right: auto; padding-left: 7px; font-size: 15px; font-weight: 510; color: var(--text); letter-spacing: -0.2px; }
.side__ws .ic { margin-left: -2px; }
.lj14 { width: 15px; height: 15px; color: var(--text-2); }
.side__tool { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--text-3); }
.side__tool--round { background: #17181a; box-shadow: inset 0 0 0 1px #2a2b2f; }
.side__list--top { margin-top: 15px; }
.side__list li { display: flex; align-items: center; gap: 8px; height: 30px; padding: 0 6px; border-radius: 6px; font-weight: 510; color: var(--text-2); white-space: nowrap; }
.side__list li .ic { color: var(--text-3); }
.side__list li .ic.c-yellow { color: var(--yellow); }
.side__list li .ic.c-indigo { color: #7a84e0; }
.side__list li .ic.c-orange { color: #f0883e; }
.side__list li.is-on { background: rgba(255, 255, 255, 0.05); }
.side__grp { display: flex; align-items: center; gap: 4px; height: 22px; margin-top: 15px; padding-left: 6px; font-size: 12px; font-weight: 510; color: var(--text-4); }

.pane {
  position: absolute; left: 240px; top: 8px; right: 8px; bottom: 8px; border-radius: 8px;
  background: linear-gradient(180deg, #141517 0%, #111213 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.pane__bar { display: flex; align-items: center; gap: 7px; height: 44px; padding: 0 21px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-weight: 510; color: var(--text-2); white-space: nowrap; }
.pane__ttl { margin-left: 3px; }
.pane__star { margin-left: 14px; }
.pane__pager { display: flex; align-items: center; gap: 16px; margin-left: auto; color: var(--text-4); font-weight: 400; }
.pane__pager i { color: var(--text-4); }
.pane__pager span { color: var(--text-3); }
.pane__tools { position: absolute; top: 53px; right: 15px; display: flex; gap: 8px; }
.rbtn { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: var(--text-3); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.rbtn--split { display: flex; gap: 6px; justify-content: center; width: 58px; border-radius: 9999px; }
.rbtn--split i { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.1); }

.doc { position: absolute; left: 72px; top: 107px; width: 560px; }
.doc__ttl { font-size: 20px; line-height: 28px; font-weight: 510; color: var(--text); letter-spacing: -0.3px; }
.doc__desc { max-width: 530px; margin-top: 8px; font-size: 15px; line-height: 21px; color: var(--text-3); }
.kode { font-family: var(--mono); font-size: 12px; line-height: 18px; padding: 1px 6px; border: 1px solid var(--chip); border-radius: 4px; background: #161718; color: var(--text-2); }
.doc__h { margin-top: 26px; font-size: 17px; line-height: 24px; font-weight: 510; color: var(--text); }
.act { margin-top: 23px; }
.act li, .act--last { position: relative; display: flex; align-items: center; gap: 10px; height: 20px; color: var(--text-4); white-space: nowrap; }
.act li + li { margin-top: 12px; }
.act li:first-child::after { content: ""; position: absolute; left: 7px; top: 19px; width: 1px; height: 14px; background: rgba(255, 255, 255, 0.08); }
.act b { color: var(--text-3); }
.act .ic { color: var(--text-4); }
.act--last { margin: 22px 0 0 7px; }
.act--last .ic { color: var(--yellow); }
.cmt { width: 640px; margin: 23px 0 0 -15px; padding: 15px 15px 15px 16px; border-radius: 8px; background: #161718; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06); overflow: hidden; }
.cmt__row { display: flex; align-items: center; gap: 7px; height: 20px; color: var(--text-4); white-space: nowrap; }
.cmt__row b { color: var(--text-2); }
.cmt__row .av, .cmt__row > .ic { margin-right: 3px; }
.cmt__txt { margin-top: 5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmt__txt--in { padding-left: 24px; }
.cmt hr { height: 1px; margin: 12px -16px; border: 0; background: rgba(255, 255, 255, 0.06); }
.cmt--sys { margin-top: 21px; padding-top: 11px; padding-bottom: 11px; }
.cmt--sys hr { margin: 11px -16px; }
.cmt--sys .cmt__row b { color: var(--text-3); }
.cmt--sys .cmt__row b:first-of-type { color: var(--text-2); }
.men { display: inline-block; padding: 0 3px; border-radius: 4px; background: rgba(109, 120, 213, 0.18); color: #a3abf2; line-height: 20px; }

.props { position: absolute; left: 782px; top: 98px; display: flex; flex-direction: column; gap: 10px; }
.props__k { color: var(--text-3); }
.props__v { display: flex; align-items: center; gap: 8px; font-weight: 510; color: var(--text-2); }

.agent {
  position: absolute; left: 659px; top: 172px; width: 398px; height: 518px; border-radius: 12px;
  background: linear-gradient(180deg, #161719 0%, #131416 100%); border: 1px solid var(--chip);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}
.agent__head { position: absolute; left: 20px; right: 14px; top: 14px; display: flex; align-items: center; gap: 7px; height: 20px; }
.agent__head b { color: var(--text); }
.agent__ctl { display: flex; gap: 12px; margin-left: auto; color: var(--text-3); }
.tagm { display: inline-block; height: 17px; margin-left: 2px; padding: 0 5px; border: 1px solid var(--chip); border-radius: 4px; font-size: 11px; line-height: 15px; color: var(--text-3); font-weight: 400; }
.bubble { position: absolute; left: 47px; right: 11px; top: 63px; padding: 9px 10px; border-radius: 8px; background: #1d1e21; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04); color: var(--text); }
.ctx { position: absolute; right: 16px; top: 127px; display: flex; align-items: center; gap: 6px; color: var(--text-4); white-space: nowrap; }
.ctx b { color: var(--text-3); }
.agent__work, .agent__think { position: absolute; left: 20px; top: 159px; display: flex; align-items: center; gap: 6px; color: var(--text-3); }
.agent__think { display: none; }
.agent__p { position: absolute; left: 20px; right: 20px; top: 186px; color: var(--text-2); }
.agent.is-thinking .agent__think { display: flex; }
.agent.is-thinking .agent__work, .agent.is-thinking .agent__p, .agent.is-thinking .diffc { visibility: hidden; }
.shimmer {
  color: transparent;
  background: linear-gradient(90deg, #62666d 0%, #62666d 38%, #e6e8eb 50%, #62666d 62%, #62666d 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  animation: shimmer 2400ms linear infinite;
}
.diffc { position: absolute; left: 8px; right: 10px; top: 238px; height: 83px; padding: 7px 10px 0 11px; border-radius: 8px; background: #19191c; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06); }
.diffc__row { display: flex; align-items: center; gap: 6px; height: 22px; white-space: nowrap; }
.diffc__row b { color: var(--text); }
.diffc__btn { display: flex; align-items: center; gap: 5px; height: 20px; margin-left: auto; padding: 0 7px; border-radius: 5px; box-shadow: inset 0 0 0 1px var(--chip); font-size: 12px; color: var(--text-3); }
.diffc__br { margin-top: 2px; font-family: var(--mono); font-size: 10px; line-height: 18px; color: var(--text-4); }
.composer { position: absolute; left: 8px; right: 10px; bottom: 8px; height: 95px; padding: 11px 12px; border-radius: 8px; background: #161718; box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06); }
.composer__ph { color: var(--text-4); }
.composer__bar { position: absolute; left: 12px; right: 10px; bottom: 11px; display: flex; align-items: center; }
.composer__sk { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-3); }
.composer__ic { display: flex; align-items: center; gap: 14px; margin-left: auto; color: var(--text-3); }
.composer__go { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #2a2b2f; color: var(--text); }

/* avatar */
.av { flex: none; display: inline-grid; place-items: center; border-radius: 50%; overflow: hidden; color: #fff; font-weight: 600; line-height: 1; }
img.av { display: block; object-fit: cover; background: #2b2c30; }
.av--14 { width: 14px; height: 14px; font-size: 0; }
.av--16 { width: 16px; height: 16px; font-size: 0; }
.av--20 { width: 20px; height: 20px; font-size: 10px; }
.av--28 { width: 36px; height: 36px; border-radius: 7px; font-size: 14px; }
.av--lj { background: #2b2c30; color: var(--text-2); }
.av--lj svg { width: 64%; height: 64%; }
.av--c1 { background: linear-gradient(135deg, #f7bf8b, #b8674d); }
.av--c2 { background: linear-gradient(135deg, #83dcdc, #33808b); }
.av--c3 { background: linear-gradient(135deg, #9db0ff, #5a54c9); }
.av--c4 { background: linear-gradient(135deg, #f79ce0, #9c4a88); }

/* =========================================================
   Logo pelanggan
   ========================================================= */
.logos { padding-top: 108px; }
.logos__vp { position: relative; }
.logos__row { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.logos__row--dup { display: none; }
.wm { display: flex; align-items: center; gap: 8px; color: #f7f8f8; white-space: nowrap; }
.wm svg { flex: none; }
.wm--aru svg { color: #f7f8f8; }
.wm--aru span { font-size: 23px; font-weight: 600; letter-spacing: -0.7px; }
.wm--sam { gap: 5px; }
.wm--sam span { font-size: 23px; font-weight: 700; letter-spacing: -1px; }
.wm--kopi span { padding: 6px 10px 7px; border-radius: 12px; background: #f7f8f8; color: #08090a; font-size: 13px; line-height: 16px; font-weight: 650; letter-spacing: -0.3px; }
.wm--pel span { font-size: 26px; font-weight: 400; letter-spacing: -0.4px; }
.wm--bayu span { font-size: 17px; font-weight: 700; letter-spacing: 0.4px; }
.wm--tanah span { font-size: 23px; font-weight: 620; letter-spacing: -0.9px; }
.wm--rimba { gap: 4px; }
.wm--rimba span { font-size: 23px; font-weight: 510; letter-spacing: -0.5px; }
.logos__cap { margin-top: 40px; font-family: var(--mono); font-size: 11px; line-height: 16px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-4); }

/* =========================================================
   Pernyataan dua nada
   ========================================================= */
.stmt { padding: 97px 0 136px; }
.stmt__p { max-width: 1180px; font-size: 48px; line-height: 48px; font-weight: 510; letter-spacing: -1.06px; color: var(--text); }
.stmt__p span { color: var(--text-3); }

/* =========================================================
   Tiga pilar
   ========================================================= */
.pillars-sec { padding-bottom: 161px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { display: flex; flex-direction: column; height: 467px; padding: 0 32px; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.fig { font-family: var(--mono); font-size: 11px; line-height: 16px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-4); }
.pillar__art { flex: none; display: grid; place-items: center; height: 350px; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 100%); }
.pillar__t { margin-top: 23px; font-size: 15px; line-height: 20px; font-weight: 510; letter-spacing: -0.1px; color: var(--text); }
.pillar__d { max-width: 290px; margin-top: 9px; font-size: 14px; line-height: 24px; color: var(--text-3); }

/* kisi titik di tutup kubus (berkedip tanpa henti setelah terlihat) */
/* gd:start — dibangkitkan bantu/gen-v3.mjs */
.gd{opacity:.3}
@keyframes gd-ag-ec{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:1}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:1}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ag-ec{animation:gd-ag-ec 3200ms linear infinite}
@keyframes gd-ag-so{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:1}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:1}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ag-so{animation:gd-ag-so 3200ms linear infinite}
@keyframes gd-ag-1lc{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:1}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:1}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ag-1lc{animation:gd-ag-1lc 3200ms linear infinite}
@keyframes gd-ag-36o{0%{opacity:.3}7.14%{opacity:1}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:1}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ag-36o{animation:gd-ag-36o 3200ms linear infinite}
@keyframes gd-ag-6dc{0%{opacity:1}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:1}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:1}}
.is-in .gd-ag-6dc{animation:gd-ag-6dc 3200ms linear infinite}
@keyframes gd-pg-35s{0%{opacity:.3}7.14%{opacity:1}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-35s{animation:gd-pg-35s 1600ms linear infinite}
@keyframes gd-pg-1kw{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:1}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-1kw{animation:gd-pg-1kw 1600ms linear infinite}
@keyframes gd-pg-g{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:1}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-g{animation:gd-pg-g 1600ms linear infinite}
@keyframes gd-pg-w{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:1}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-w{animation:gd-pg-w 1600ms linear infinite}
@keyframes gd-pg-so{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:1}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:1}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-so{animation:gd-pg-so 1600ms linear infinite}
@keyframes gd-pg-6bk{0%{opacity:1}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:1}}
.is-in .gd-pg-6bk{animation:gd-pg-6bk 1600ms linear infinite}
@keyframes gd-pg-1s{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:1}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-1s{animation:gd-pg-1s 1600ms linear infinite}
@keyframes gd-pg-ec{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:1}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:1}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-ec{animation:gd-pg-ec 1600ms linear infinite}
@keyframes gd-pg-1{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:1}100%{opacity:.3}}
.is-in .gd-pg-1{animation:gd-pg-1 1600ms linear infinite}
@keyframes gd-pg-2{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:1}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-2{animation:gd-pg-2 1600ms linear infinite}
@keyframes gd-pg-74{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:1}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-74{animation:gd-pg-74 1600ms linear infinite}
@keyframes gd-pg-3k{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:1}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-pg-3k{animation:gd-pg-3k 1600ms linear infinite}
@keyframes gd-ud-9hd{0%{opacity:1}7.14%{opacity:1}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:1}100%{opacity:1}}
.is-in .gd-ud-9hd{animation:gd-ud-9hd 2800ms linear infinite}
@keyframes gd-ud-1ky{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:1}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:1}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ud-1ky{animation:gd-ud-1ky 2800ms linear infinite}
@keyframes gd-ud-170{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:1}28.57%{opacity:1}35.71%{opacity:.3}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:.3}71.43%{opacity:1}78.57%{opacity:1}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ud-170{animation:gd-ud-170 2800ms linear infinite}
@keyframes gd-ud-7k{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:1}42.86%{opacity:.3}50%{opacity:.3}57.14%{opacity:.3}64.29%{opacity:1}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ud-7k{animation:gd-ud-7k 2800ms linear infinite}
@keyframes gd-ud-68{0%{opacity:.3}7.14%{opacity:.3}14.29%{opacity:.3}21.43%{opacity:.3}28.57%{opacity:.3}35.71%{opacity:.3}42.86%{opacity:1}50%{opacity:1}57.14%{opacity:1}64.29%{opacity:.3}71.43%{opacity:.3}78.57%{opacity:.3}85.71%{opacity:.3}92.86%{opacity:.3}100%{opacity:.3}}
.is-in .gd-ud-68{animation:gd-ud-68 2800ms linear infinite}
/* gd:end */

/* =========================================================
   Section fitur (kerangka berulang)
   ========================================================= */
.feat { position: relative; padding: 130px 0; border-top: 1px solid var(--line); overflow-x: clip; }
.feat--first { padding-top: 165px; }
.feat__head { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; align-items: start; }
.feat__lead p { max-width: 540px; font-size: 24px; line-height: 32px; letter-spacing: -0.2px; color: var(--text-2); }
.feat__lead .tlink { margin-top: 40px; }

.fv { position: relative; height: var(--h); pointer-events: none; }
.fv--intake { --h: 753px; }
.fv--plan { --h: 733px; }
.fv--ai { --h: 764px; }
.fv--build { --h: 724px; }
.fv__frame { position: absolute; top: 0; left: 50%; width: 1440px; height: var(--h); margin-left: -720px; }

.idx { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 64px; }
.idx__label { grid-column: 1; font-size: 15px; line-height: 28px; color: var(--text-3); }
.idx__list { position: relative; }
.idx__list:nth-of-type(1) { grid-column: 3; }
.idx__list:nth-of-type(2) { grid-column: 4; }
.idx__list:nth-of-type(2)::before { content: ""; position: absolute; left: -32px; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.idx__list a { display: inline-flex; gap: 8px; font-size: 15px; line-height: 28px; color: var(--text-3); transition: color 0.16s ease; }
.idx__list a i { color: var(--text-4); transition: transform 0.16s ease; }
.idx__list a:hover { color: var(--text); }
.idx__list a:hover i { transform: rotate(90deg); }

/* ---------- kolase 1: utas + papan ---------- */
.board {
  position: absolute; left: 300px; top: 103px; width: 1100px; height: 610px; display: flex; gap: 14px; padding: 19px 0 0 21px;
  border-radius: 12px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 1px 0 0 rgba(255, 255, 255, 0.03);
  -webkit-mask-image: linear-gradient(90deg, #000 58%, transparent 94%), linear-gradient(180deg, #000 52%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, #000 58%, transparent 94%), linear-gradient(180deg, #000 52%, transparent 100%);
  mask-composite: intersect;
}
.bcol { flex: 0 0 299px; display: flex; flex-direction: column; gap: 9px; }
.bcol__head { display: flex; align-items: center; gap: 8px; height: 28px; margin-bottom: 14px; padding: 0 6px 0 12px; white-space: nowrap; }
.bcol__head b { color: var(--text-2); }
.bcol__head em { color: var(--text-4); }
.bcol__act { display: flex; gap: 12px; margin-left: auto; color: var(--text-4); }
.bcol--dim { opacity: 0.4; }
.kc { height: 94px; padding: 9px 12px 0; border-radius: 8px; background: #141517; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.2); }
.kc--dim { opacity: 0.5; }
.kc__top { display: flex; align-items: center; justify-content: space-between; height: 18px; font-size: 11px; color: var(--text-4); }
.kc__top .av { filter: grayscale(0.4); opacity: 0.85; }
.kc__t { height: 20px; margin-top: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 510; color: var(--text-2); }
.kc__chips { display: flex; gap: 6px; margin-top: 9px; }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 20px; padding: 0 7px; border-radius: 9999px; box-shadow: inset 0 0 0 1px var(--chip); font-size: 12px; font-weight: 510; color: var(--text-3); white-space: nowrap; }
.chip--sq { width: 22px; padding: 0; justify-content: center; border-radius: 5px; color: var(--text-3); }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot--red { background: #eb5757; }
.dot--blue { background: #4ea7fc; }
.dot--green { background: #4cb782; }

.chat {
  position: absolute; left: 58px; top: 71px; z-index: 2; width: 477px; height: 556px; display: flex; flex-direction: column;
  border-radius: 12px; background: linear-gradient(180deg, #161719 0%, #121315 100%); box-shadow: 0 2px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08); overflow: hidden;
}
.chat__head { flex: none; display: flex; align-items: center; gap: 8px; height: 58px; padding: 0 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); white-space: nowrap; }
.chat__head b { font-size: 16px; font-weight: 510; color: var(--text); }
.chat__head em { font-size: 12px; color: var(--text-3); }
.chat__keb { margin-left: auto; }
.chat__msgs { padding: 46px 22px 0; }
.msg { display: flex; gap: 16px; }
.msg + .msg { margin-top: 23px; }
.msg p { font-size: 13px; line-height: 20px; color: var(--text-2); }
.msg .msg__h { display: flex; align-items: baseline; gap: 7px; }
.msg__h b { font-size: 14px; color: var(--text); }
.msg__h em { font-size: 12px; color: var(--text-4); }
.chat__box { position: relative; flex: none; height: 157px; margin: auto 9px 13px; padding: 15px 14px; border-radius: 10px; background: #191a1c; box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.07); }
.chat__box p { font-size: 13px; line-height: 24px; color: var(--text); }
.caret { display: inline-block; width: 1px; height: 15px; margin-left: 2px; vertical-align: -3px; background: var(--text); }
.chat.is-in .caret { animation: caretBlink 1250ms linear infinite; }
.chat__tools { position: absolute; left: 14px; right: 14px; bottom: 20px; display: flex; align-items: center; gap: 12px; color: var(--text-3); }
.chat__plus { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #242528; }
.chat__aa { font-size: 14px; line-height: 16px; }
.vsep { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.1); }
.chat__send { display: flex; align-items: center; gap: 7px; height: 26px; margin-left: auto; padding: 0 8px; border-radius: 6px; background: #5e69d1; color: #fff; box-shadow: 0 0 0 2px rgba(109, 120, 213, 0.35); }
.chat__send i { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.3); }
.motion-ready .chat:not(.is-in) .chat__send { opacity: 0.2; }

/* ---------- kolase 2: linimasa + grafik ---------- */
.tl {
  position: absolute; left: 52px; top: 85px; width: 760px; height: 610px; overflow: hidden; border-radius: 12px 0 0 0;
  background: linear-gradient(180deg, #101112, #0b0c0d); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 12px; line-height: 16px; color: var(--text-4);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34%), linear-gradient(180deg, #000 40%, transparent 96%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0, #000 34%), linear-gradient(180deg, #000 40%, transparent 96%);
  mask-composite: intersect;
}
.tl__months span, .tl__days span { position: absolute; transform: translateX(-50%); font-size: 11px; }
.tl__months span { top: 22px; color: var(--text-3); font-weight: 510; letter-spacing: 0.3px; }
.tl__days span { top: 48px; color: var(--text-4); }
.tl__v { position: absolute; top: 70px; bottom: 0; width: 0; border-left: 1px dashed rgba(255, 255, 255, 0.1); }
.tl__v--solid { border-left: 1px solid rgba(255, 255, 255, 0.05); }
.tl__lbl { position: absolute; display: flex; align-items: center; gap: 6px; height: 20px; font-size: 12px; font-weight: 510; color: var(--text-2); white-space: nowrap; }
.tl__ok { display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); }
.tl__bar { position: absolute; height: 22px; border-radius: 5px; background: linear-gradient(180deg, #1c1d20, #17181a); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07); }
.tl__bar--l { border-radius: 5px 0 0 5px; }
.tl__bar--late { border-radius: 0 5px 5px 0; background: repeating-linear-gradient(135deg, rgba(243, 78, 82, 0.2) 0 2px, rgba(243, 78, 82, 0.06) 2px 5px); box-shadow: inset 0 0 0 1px rgba(243, 78, 82, 0.28); }
.tl__dia { position: absolute; top: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; transform: rotate(45deg); border: 1px solid var(--text-3); background: #131416; }
.tl__dia--red { border-color: #f34e52; }
.tl__cap { position: absolute; transform: translateX(-50%); font-size: 11px; color: var(--text-4); white-space: nowrap; }
.tl__lbl--dim, .tl__bar--dim, .tl__cap--dim { opacity: 0.5; }

.chart {
  position: absolute; left: 720px; top: 65px; width: 668px; height: 622px; overflow: hidden; border-radius: 12px;
  background: linear-gradient(180deg, #161719 0%, #111214 100%);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  -webkit-mask-image: linear-gradient(90deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 78%, transparent 100%);
}
.chart__t { position: absolute; left: 31px; top: 29px; font-size: 13px; line-height: 20px; font-weight: 510; color: var(--text-2); }
.chart__svg { position: absolute; left: 0; top: 60px; }
.chart__m span { position: absolute; top: 509px; transform: translateX(-50%); font-size: 12px; line-height: 16px; color: var(--text-4); white-space: nowrap; }
.chart__m span:last-child { opacity: 0.5; }
.motion-ready .chart:not(.is-in) .chart__svg circle { opacity: 0; }
.chart.is-in .chart__svg circle { transform-box: fill-box; transform-origin: center; animation: dotIn 420ms linear var(--d, 0ms) both; }

/* ---------- kolase 3: jendela agen ---------- */
.fv--ai .fv__frame {
  -webkit-mask-image: linear-gradient(90deg, transparent 30px, rgba(0, 0, 0, 0.3) 150px, #000 330px, #000 1110px, rgba(0, 0, 0, 0.3) 1290px, transparent 1410px);
  mask-image: linear-gradient(90deg, transparent 30px, rgba(0, 0, 0, 0.3) 150px, #000 330px, #000 1110px, rgba(0, 0, 0, 0.3) 1290px, transparent 1410px);
}
.aw {
  position: absolute; top: 168px; width: 400px; height: 556px; overflow: hidden; border-radius: 12px;
  background: linear-gradient(180deg, #131416 0%, #0e0f10 70%, #0b0c0d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.aw__head { position: absolute; left: 18px; right: 14px; top: 16px; display: flex; align-items: center; gap: 8px; height: 20px; }
.aw__head b { color: var(--text); }
.aw__ctl { display: flex; gap: 12px; margin-left: auto; color: var(--text-3); }
.aw .bubble { top: 65px; }
.aw .ctx { top: 129px; right: 18px; }
.aw__line { position: absolute; left: 21px; display: flex; align-items: center; gap: 6px; color: var(--text-3); white-space: nowrap; }
.aw__line--2 { color: var(--text-2); }
.idchip { display: inline-flex; align-items: center; gap: 5px; height: 20px; padding: 0 6px; border-radius: 5px; background: #17181a; box-shadow: inset 0 0 0 1px var(--chip); font-size: 12px; color: var(--text-3); }
.idchip b { font-weight: 400; color: var(--text-2); }
.aw__prog { position: absolute; left: 11px; right: 11px; top: 242px; display: flex; align-items: center; gap: 10px; height: 43px; padding: 0 14px 0 13px; border-radius: 8px; background: #141517; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07); color: var(--text-3); white-space: nowrap; }
.aw__prog em { margin-left: auto; }
.aw__list { position: absolute; left: 11px; right: 11px; top: 200px; padding: 7px 14px; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07); }
.aw__list p { height: 24px; line-height: 24px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw__chip { position: absolute; left: 11px; top: 306px; height: 22px; padding: 0 8px; border-radius: 5px; box-shadow: inset 0 0 0 1px var(--chip); font-size: 12px; line-height: 22px; color: var(--text-3); }
.aw__grp { position: absolute; left: 21px; height: 20px; font-weight: 510; color: var(--text-2); white-space: nowrap; }
.aw__rows { position: absolute; left: 11px; right: 11px; padding: 5px 0; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07); }
.aw__rows p { display: flex; align-items: center; gap: 8px; height: 31px; padding: 0 12px; overflow: hidden; white-space: nowrap; color: var(--text-2); font-weight: 510; }
.aw__rows em { width: 72px; color: var(--text-3); font-weight: 400; }
.aw__rows--dim { opacity: 0.55; }

.pick { display: none; }

/* ---------- kolase 4: daftar isu + diff ---------- */
.list {
  position: absolute; left: 50px; top: 122px; width: 520px; height: 602px; overflow: hidden; padding: 14px 8px 0;
  border-radius: 12px; background: linear-gradient(180deg, #111214, #0c0d0e); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
.list__grp { display: flex; align-items: center; height: 32px; margin: 3px 0; padding-left: 21px; border-radius: 6px; background: rgba(255, 255, 255, 0.035); white-space: nowrap; }
.list__grp .ic--10 { margin-right: 13px; }
.list__grp .ic--14 { margin-right: 9px; }
.list__grp b { margin-right: 8px; color: var(--text-2); }
.list__grp em { color: var(--text-4); }
.list__row { display: flex; align-items: center; height: 38.5px; padding-left: 44px; white-space: nowrap; }
.list__id { width: 81px; margin-left: 8px; color: var(--text-3); }
.list__t { margin-left: 10px; color: var(--text-2); }

.code {
  position: absolute; left: 497px; top: 95px; width: 891px; height: 629px; overflow: hidden; border-radius: 12px;
  background: linear-gradient(180deg, #151618 0%, #101113 100%);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(90deg, #000 72%, transparent 100%), linear-gradient(180deg, #000 76%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, #000 72%, transparent 100%), linear-gradient(180deg, #000 76%, transparent 100%);
  mask-composite: intersect;
}
.code__head { position: relative; display: flex; align-items: center; gap: 34px; height: 52px; padding-left: 31px; font-family: var(--mono); font-size: 13px; color: var(--text-4); white-space: nowrap; }
.code__who { position: absolute; left: 792px; display: flex; align-items: center; gap: 6px; font-family: var(--font); font-size: 13px; color: var(--text-3); }
.code__body { display: flex; padding-top: 42px; }
.code__pane { flex: none; overflow: hidden; }
.code__pane--old { width: 559px; box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.07); }
.code__pane--new { width: 332px; opacity: 0.5; }
.code pre { font-family: var(--mono); font-size: 13px; line-height: 24px; color: var(--text-2); white-space: normal; }
.ln { display: block; height: 24px; padding-left: 32px; white-space: pre; }
.ln i { display: inline-block; width: 30px; color: var(--text-4); }
.ln--del { background: rgba(243, 78, 82, 0.1); box-shadow: inset 2px 0 0 #f34e52; }
.ln--del i { color: #f34e52; }
.ln--add { background: rgba(39, 166, 68, 0.08); box-shadow: inset 2px 0 0 #27a644; }
.ln--add i { color: #4cb782; }
.tk { color: #f79ce0; }
.ts { color: #f7bf8b; }
.tc { color: #83dcdc; }
.tt { color: #8fa6ff; }

/* =========================================================
   Yang baru
   ========================================================= */
.log { padding-top: 160px; border-top: 1px solid var(--line); }
.log__grid { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 64px; margin-top: 82px; }
.log__item { position: relative; }
.log__item::before { content: ""; position: absolute; left: 0; right: -64px; top: 3.5px; height: 1px; background: rgba(255, 255, 255, 0.08); }
.log__item:last-child::before { right: 0; }
.log__dot { position: relative; display: block; width: 8px; height: 8px; border-radius: 50%; background: #3a3b40; box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px rgba(255, 255, 255, 0.07); }
.is-new .log__dot { background: #f34e52; box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px rgba(243, 78, 82, 0.3), 0 0 14px 3px rgba(243, 78, 82, 0.45); }
.log__item h3 { margin-top: 61px; font-size: 15px; line-height: 20px; font-weight: 510; letter-spacing: -0.1px; color: var(--text); }
.log__item p { display: -webkit-box; margin-top: 11px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 15px; line-height: 24px; color: var(--text-3); }
.log__item time { display: block; margin-top: 20px; font-family: var(--mono); font-size: 12px; line-height: 16px; letter-spacing: 0.02em; color: var(--text-4); }
.log .tlink { margin-top: 82px; }

/* =========================================================
   Testimoni
   ========================================================= */
.quotes-sec { padding-top: 173px; }
.quotes { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 8px; width: min(1320px, calc(100% - 2 * var(--gut))); margin: 0 auto; }
.quotes::before { content: ""; position: absolute; inset: -13px; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); pointer-events: none; -webkit-mask-image: radial-gradient(55% 62% at 0% 0%, #000 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%); mask-image: radial-gradient(55% 62% at 0% 0%, #000 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%); }
.quote { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 480px; overflow: hidden; padding: 24px 32px 26px; border-radius: 8px; color: #08090a; }
.quote--pastel { background: linear-gradient(162deg, #d2e2fd 0%, #dde3fc 42%, #ebe3fb 100%); }
.quote--lime { background: var(--accent); }
.quote--blue { display: none; background: #1c85e8; }
.quote blockquote { position: relative; max-width: 520px; font-size: 32px; line-height: 36px; font-weight: 400; letter-spacing: -0.6px; text-indent: -12px; }
.quote--lime blockquote { max-width: 310px; }
.quote__wm { position: absolute; right: -230px; top: -120px; width: 780px; height: 780px; opacity: 0.38; }
.who { position: relative; display: flex; align-items: center; gap: 18px; }
.who__mk { flex: none; width: 32px; height: 32px; color: #08090a; }
.who > i { width: 1px; height: 32px; background: rgba(0, 0, 0, 0.15); }
.who b { display: block; font-size: 13px; line-height: 18px; font-weight: 590; color: #08090a; }
.who em { display: block; font-size: 13px; line-height: 18px; color: #3c3d42; }
.quote--blue .who em { color: #0f2a4a; }
.proof { display: flex; align-items: center; justify-content: space-between; margin-top: 47px; }
.proof p { font-size: 15px; line-height: 24px; color: var(--text-3); }
.proof b { color: var(--text); }

/* =========================================================
   CTA akhir
   ========================================================= */
.cta { padding: 228px 0 225px; text-align: center; }
.cta__t { font-size: 72px; line-height: 72px; font-weight: 510; letter-spacing: -1.58px; color: var(--text); }
.cta__btns { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }

/* =========================================================
   Footer
   ========================================================= */
.foot { padding: 55px 0 56px; border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: repeat(6, 1fr); column-gap: 64px; }
.foot__logo { display: block; width: 20px; height: 20px; color: var(--text-2); }
.foot__col h4 { font-size: 13px; line-height: 20px; font-weight: 510; color: var(--text); }
.foot__col ul { margin-top: 24px; }
.foot__col a { display: block; width: max-content; font-size: 13px; line-height: 30px; color: var(--text-3); transition: color 0.16s ease; }
.foot__col a:hover { color: var(--text); }
.foot__col--legal { display: none; }
.foot__legal { display: flex; gap: 20px; margin-top: 79px; padding-left: calc((100% - 5 * 64px) / 6 + 64px); }
.foot__legal a { font-size: 13px; line-height: 20px; color: var(--text-4); transition: color 0.16s ease; }
.foot__legal a:hover { color: var(--text-3); }

/* =========================================================
   Tablet ≤ 1023 px
   ========================================================= */
@media (max-width: 1023px) {
  :root { --gut: 32px; }
  .nav__links, .nav__sep { display: none; }
  .nav__login { margin-left: auto; }
  .nav__slot { display: block; flex: none; width: 42px; height: 32px; }
  .nav__fixed { display: block; position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 73px; pointer-events: none; }
  .nav__burger { display: grid; position: absolute; z-index: 2; top: 0; right: calc(var(--gut) - 28px); width: 72px; height: 72px; pointer-events: auto; }
  .nav__burger:focus-visible { outline-offset: -14px; }
  .mnav {
    display: block; position: fixed; z-index: 1; left: 0; right: 0; bottom: 0; top: var(--mnav-top, 73px);
    padding: calc(32px + var(--mnav-shift, 0px)) 24px 32px; overflow-y: auto; overscroll-behavior: contain;
    background: rgba(11, 11, 11, 0.8); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    pointer-events: auto;
  }
  .mnav[hidden] { display: none; }
  /* halaman di bawah overlay: animasi CSS dijeda selama menu terbuka */
  html.menu-open main *, html.menu-open main *::before, html.menu-open main *::after { animation-play-state: paused !important; }
  .mnav__group + .mnav__group { margin-top: 26.5px; }
  .mnav__label { font-size: 14px; line-height: 21px; font-weight: 510; color: var(--text-3); margin-bottom: 13.5px; }
  .mnav__list a { display: block; width: max-content; max-width: 100%; padding: 7.5px 0; font-size: 24px; line-height: 29px; font-weight: 510; letter-spacing: -0.2px; color: var(--text); transition: color 0.16s var(--ease-menu); }
  .mnav__list a:hover { color: var(--text-2); }
  .mnav__list a:focus-visible { outline-offset: 2px; border-radius: 4px; }
  html.menu-open, html.menu-open body { overflow: hidden; }

  .hero { padding-top: 92px; }
  .hero__title { font-size: 56px; line-height: 61.6px; }
  .hero__row { display: block; margin-top: 19px; }
  .hero__sub span { display: block; }
  .hero__news { width: max-content; margin-top: 21px; }
  .stage { overflow: hidden; height: 748px; }
  .stage__shade { display: none; }
  .stage__band { left: 0; right: 0; }
  .stage__win { left: 28px; margin-left: 0; }

  /* logo berjalan (carousel tanpa henti) */
  .logos { padding-top: 46px; }
  .logos__vp { overflow: hidden; height: 40px; margin: 0 calc(-1 * var(--gut)); }
  .logos__row { justify-content: flex-start; gap: 40px; width: max-content; }
  .logos__row--dup { display: flex; position: absolute; left: 0; top: 0; }
  .wm--aru span, .wm--sam span, .wm--tanah span, .wm--rimba span { font-size: 16px; }
  .wm--pel span { font-size: 18px; }
  .wm--bayu span { font-size: 12px; }
  .wm--kopi span { font-size: 11px; padding: 4px 8px 5px; }
  .wm--aru svg { width: 18px; height: 18px; }
  .wm--sam svg { width: 14px; height: 13px; }
  .wm--bayu svg { width: 16px; height: 17px; }
  .wm--rimba svg { width: 20px; height: 20px; }
  .logos__cap { margin-top: 30px; }
  .logos.is-in .logos__row { animation: marquee 30000ms linear infinite; }
  .logos.is-in .logos__row--dup { animation-name: marqueeAbs; }

  .stmt { padding: 72px 0 60px; }
  .stmt__p { font-size: 40px; line-height: 44px; }
  .h2 { font-size: 40px; line-height: 44px; }

  .pillars-sec { padding-bottom: 132px; }
  .pillars { display: flex; gap: 8px; width: auto; margin: 0; padding: 0 8px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 8px; scrollbar-width: none; }
  .pillars::-webkit-scrollbar { display: none; }
  .pillar, .pillar:first-child, .pillar:last-child { flex: 0 0 327px; height: 440px; padding: 0 24px 20px 25px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 60%); scroll-snap-align: start; }
  .pillar + .pillar { border-left: 1px solid var(--line); }
  .fig { display: none; }
  .pillar__art { height: 296px; margin-top: 12px; }
  .pillar__t { margin-top: 0; }
  .pillar__d { margin-top: 9px; }

  .feat { padding: 48px 0 97px; }
  .feat--first { padding-top: 82px; }
  .feat__head { grid-template-columns: 1fr; row-gap: 18px; }
  .feat__lead p { max-width: 450px; font-size: 20px; line-height: 26px; }
  .feat__lead .tlink { margin-top: 36px; }
  /* kolase tetap skala desktop, digeser per section seperti acuan */
  .fv { margin-top: -32px; }
  .feat--first .fv { margin-top: -24px; }
  .fv__frame { left: 0; margin-left: var(--tx, 0px); }
  .fv--intake { --tx: -29px; }
  .fv--intake .board { left: 410px; }
  .fv--plan { --tx: -643px; }
  .fv--plan .tl { display: none; }
  .fv--ai { --tx: -336px; }
  .fv--ai .fv__frame {
    -webkit-mask-image: linear-gradient(90deg, transparent 300px, #000 420px, #000 960px, transparent 1110px);
    mask-image: linear-gradient(90deg, transparent 300px, #000 420px, #000 960px, transparent 1110px);
  }
  .fv--build { --tx: -22px; }
  .fv--build .code { left: 397px; }
  .idx { grid-template-columns: 1fr 1fr; column-gap: 64px; row-gap: 36px; margin-top: 0; }
  .idx__label { grid-column: 1 / -1; }
  .idx__list:nth-of-type(1) { grid-column: 1; }
  .idx__list:nth-of-type(2) { grid-column: 2; }

  .log__grid { grid-template-columns: repeat(2, 1fr); }
  .log__item:nth-child(n + 3) { display: none; }
  .log__item:nth-child(2)::before { right: 0; }

  .quotes-sec { padding-top: 164px; }
  .quotes { display: flex; gap: 8px; width: auto; margin: 0; padding: 0 8px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 8px; scrollbar-width: none; }
  .quotes::-webkit-scrollbar, .quotes::before { display: none; }
  .quote { flex: 0 0 320px; min-height: 360px; height: 360px; padding: 20px 28px 31px 29px; scroll-snap-align: start; }
  .quote--blue { display: flex; }
  .quote blockquote, .quote--lime blockquote { max-width: none; font-size: 24px; line-height: 32px; letter-spacing: -0.3px; text-indent: -11px; }
  .quote__wm { right: -250px; top: 30px; width: 520px; height: 520px; }
  .who { gap: 15px; }
  .who__mk { width: 36px; height: 36px; }
  .who .role-long { display: none; }
  .proof { display: none; }

  .cta { padding: 128px 0 126px; }
  .cta__t { font-size: 40px; line-height: 46px; letter-spacing: -1.1px; }

  .foot { padding: 58px 0 152px; }
  .foot__grid { grid-template-columns: repeat(4, 1fr); column-gap: 32px; row-gap: 50px; }
  .foot__logo { grid-row: 1 / span 2; }
  .foot__col ul { margin-top: 16px; }
  .foot__col--legal { display: block; }
  .foot__legal { display: none; }
}

/* =========================================================
   Ponsel ≤ 640 px
   ========================================================= */
@media (max-width: 640px) {
  :root { --gut: 24px; }
  .nav { height: 65px; }
  .brand { margin-left: -1px; }
  .nav__login { margin-right: 20px; font-size: 14px; }
  .btn--nav { font-size: 15px; }
  .nav__slot { width: 37px; }
  .nav__fixed { height: 65px; }
  .nav__burger { top: 0; right: calc(var(--gut) - 24px); width: 56px; height: 64px; }
  .nav__burger:focus-visible { outline-offset: -12px; }
  .mnav { top: var(--mnav-top, 65px); animation: mnavIn 0.18s linear both; }
  .mnav.is-closing { animation: mnavOut 0.18s linear both; }

  .hero { padding-top: 131px; }
  .hero__title { max-width: 280px; font-size: 38px; line-height: 41.8px; letter-spacing: -1.1px; }
  .br-lg { display: none; }
  .hero__row { margin-top: 20px; }
  .hero__sub { font-size: 15px; }
  .hero__sub span { display: inline; }
  .hero__news { margin-top: 22px; }
  .stage { margin-top: 45px; height: 389px; overflow: visible; }
  .stage__band {
    top: -10px;
    background:
      radial-gradient(60% 30% at 50% 100%, rgba(170, 171, 176, 0.45), rgba(170, 171, 176, 0) 100%),
      linear-gradient(180deg, #08090a 0%, #0d0e0f 40%, #1b1c1e 65%, #3a3b3f 88%, #56575b 100%);
  }
  .stage__win { left: 18px; right: 0; width: auto; height: 380px; overflow: hidden; }
  .app { zoom: 0.5; }
  .stage__veil::before { width: 660px; height: 360px; border-radius: 6px; }

  .logos { padding-top: 34px; }
  .logos__vp { height: 30px; }
  .logos__row { height: 30px; }
  .logos__cap { margin-top: 36px; }

  .stmt { padding: 49px 0 68px; }
  .stmt__p { font-size: 24px; line-height: 31.92px; letter-spacing: -0.4px; }
  .h2 { font-size: 24px; line-height: 31.92px; letter-spacing: -0.4px; }

  .pillars-sec { padding-bottom: 87px; }
  .pillar, .pillar:first-child, .pillar:last-child { height: 437px; }
  .pillar__art svg { width: 256px; height: auto; }

  .feat, .feat--first { display: flex; flex-direction: column; padding: 40px 0 48px; }
  .fv, .feat--first .fv { order: -1; height: 320px; margin-top: 0; overflow: hidden; }
  .fv--plan, .fv--build { height: 284px; }
  .fv--ai { height: 278px; }
  .fv__frame { position: absolute; inset: 0; width: auto; height: 100%; margin: 0; }
  .feat__head { display: block; margin-top: 24px; }
  .feat__lead p { max-width: none; margin-top: 10px; font-size: 15px; line-height: 24px; letter-spacing: 0; color: var(--text-3); }
  .feat__lead .tlink { margin-top: 18px; }
  .idx { display: none; }

  .fv--intake { -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 42%); mask-image: linear-gradient(180deg, transparent 0, #000 42%); }
  .fv--intake .board { display: none; }
  .fv--intake .chat { left: 24px; right: 24px; top: auto; bottom: 32px; width: auto; height: auto; overflow: visible; background: none; box-shadow: none; }
  .fv--intake .chat__msgs { padding: 0 8px; }
  .fv--intake .chat__head { display: none; }
  .fv--intake .chat__box { height: 116px; margin: 24px 0 0; padding-top: 13px; }
  .fv--intake .chat__tools { gap: 10px; bottom: 14px; }

  .fv--plan .tl { display: block; left: -190px; top: -8px; height: 300px; }
  .fv--plan .chart { display: none; }

  .fv--ai .fv__frame { -webkit-mask-image: none; mask-image: none; }
  .fv--ai .aw { display: none; }
  .pick { display: block; position: absolute; left: 20px; top: 0; width: 420px; padding-bottom: 8px; border-radius: 12px; background: linear-gradient(180deg, #151618, #0f1011); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
  .fv--ai { -webkit-mask-image: linear-gradient(90deg, #000 70%, transparent 100%), linear-gradient(180deg, #000 70%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, #000 70%, transparent 100%), linear-gradient(180deg, #000 70%, transparent 100%); mask-composite: intersect; }
  .pick__in { display: flex; align-items: center; height: 44px; padding: 0 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 14px; color: var(--text-4); }
  .pick__in::before { content: ""; width: 1px; height: 16px; margin-right: 2px; background: var(--text); }
  .pick ul { padding-top: 13px; }
  .pick li { display: flex; align-items: center; gap: 10px; height: 41px; margin: 0 6px; padding: 0 10px; border-radius: 6px; font-size: 14px; font-weight: 510; color: var(--text-2); }
  .pick li:first-child { background: rgba(255, 255, 255, 0.04); }
  .pick li.is-dim { opacity: 0.4; }
  .pick .tagm { margin-left: 2px; }

  .fv--build .list { display: none; }
  .fv--build .code { left: 20px; top: 0; width: 560px; height: 284px; }
  .fv--build .code__who, .fv--build .code__pane--new { display: none; }
  .fv--build .code__body { padding-top: 10px; }
  .fv--build .code__head { gap: 20px; height: 46px; padding-left: 22px; font-size: 11px; }
  .fv--build .code pre { font-size: 11px; line-height: 18px; }
  .fv--build .ln { height: 18px; padding-left: 22px; }
  .fv--build .ln i { width: 38px; }
  .fv--build .code__pane--old { box-shadow: none; }

  .log { display: none; }
  .quotes-sec { padding-top: 44px; }
  .quote { height: 359px; min-height: 359px; }

  .cta { padding: 100px 0 96px; }
  .cta__t { font-size: 38px; line-height: 41.8px; }
  .cta__btns { margin-top: 39px; }

  .foot { padding: 57px 0 30px; }
  .foot__grid { grid-template-columns: 1fr 1fr; column-gap: 32px; row-gap: 47px; }
  .foot__logo { display: none; }
  .foot__col ul { margin-top: 14px; }
  .foot__col a { font-size: 14px; }
}

/* =========================================================
   Aksesibilitas
   ========================================================= */
a:focus-visible, button:focus-visible { outline: 2px solid rgba(247, 248, 248, 0.7); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .motion-ready .chart .chart__svg circle, .motion-ready .chat .chat__send { opacity: 1; }
  .stage__veil { display: none; }
  html.js:not(.motion-ready) .stage__band, html.js:not(.motion-ready) .stage__shade, html.js:not(.motion-ready) .side,
  html.js:not(.motion-ready) .pane, html.js:not(.motion-ready) .app__chrome { opacity: 1; }
}
