/* wp-idrp — new layout + theme (index) */
:root{
  --bg: #0b1020;
  --bg2:#0a1a2d;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.12);
  --ink: #eaf1ff;
  --muted: rgba(234,241,255,.72);
  --muted2: rgba(234,241,255,.55);
  --brand: #7c5cff;
  --brand2:#00d3a7;
  --warn:#ffb703;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --r: 18px;
  --max: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
}

html, body{ width:100%; max-width:100%; }

html[data-theme="light"]{
  --bg:#f6f7fb;
  --bg2:#ffffff;
  --card: rgba(10,25,45,.05);
  --card2: rgba(10,25,45,.08);
  --line: rgba(10,25,45,.14);
  --ink:#0a1930;
  --muted: rgba(10,25,45,.72);
  --muted2: rgba(10,25,45,.55);
  --shadow: 0 18px 60px rgba(10,25,45,.18);
}

*{ box-sizing:border-box; }
img{ max-width:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(124,92,255,.25), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(0,211,167,.22), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  width:min(100% - 28px, var(--max));
  margin-inline:auto;
}
#konten{
  overflow-x:clip;
  max-width:100%;
}

.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:14px; top:14px; width:auto; height:auto; overflow:visible;
  background:var(--bg2);
  border:1px solid var(--line);
  padding:10px 12px; border-radius:12px;
  z-index:9999;
}

/* header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: var(--bg2);
  border-bottom:1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.site-header.is-stuck{
  box-shadow: 0 10px 28px rgba(0,0,0,.34);
}
.header-sentinel{
  width:100%;
  height:1px;
  margin:0;
  pointer-events:none;
}
html[data-theme="light"] .site-header{
  background: var(--bg2);
  box-shadow: 0 8px 22px rgba(10,25,45,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width: 0;
}
.brand-logo{
  display:block;
  height:34px;
  width:auto;
  max-width: min(46vw, 210px);
  object-fit: contain;
  filter: none;
}
.brand-logo--foot{
  height:32px;
  max-width: 200px;
  filter: none;
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ color:var(--muted2); font-size:12px; margin-left:6px; }

.nav{
  display:flex; align-items:center; gap:14px;
  padding:10px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
}
.nav a{ font-size:13px; color:var(--muted); padding:8px 10px; border-radius:999px; }
.nav a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color:var(--ink); }
.nav-cta{
  color:var(--ink) !important;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,211,167,.85));
  border: 1px solid rgba(255,255,255,.18);
}
.nav-cta:hover{ filter:brightness(1.03); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.auth-btns{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.btn-sm{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}
.icon-btn{
  width:42px; height:42px; border-radius:14px;
  border:1px solid var(--line);
  background: var(--card);
  color:var(--ink);
  cursor:pointer;
}
.icon-btn:hover{ background: var(--card2); }
.menu-btn{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--card);
  cursor:pointer;
  padding:11px 12px;
  position:relative;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn span{
  display:block;
  height:2px;
  width:100%;
  background: var(--ink);
  border-radius:999px;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-btn span + span{ margin-top:7px; }
.menu-btn:hover{ background: var(--card2); }
.menu-btn:active{ transform: translateY(1px); }

/* open -> X */
.menu-btn.open{
  background: var(--card2);
  border-color: rgba(124,92,255,.45);
}
.menu-btn.open span:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}
.menu-btn.open span:nth-child(2){
  opacity:0;
}
.menu-btn.open span:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce){
  .menu-btn span{ transition:none; }
}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background: var(--bg2);
}
html[data-theme="light"] .mobile-nav{ background: var(--bg2); }
.mobile-nav a{
  display:block;
  padding:14px 14px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.mobile-nav a:hover{ color:var(--ink); background: var(--card); text-decoration:none; }
.mobile-nav.show{ display:block; }

/* hero */
.hero{ padding:38px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.45fr .75fr;
  gap:18px;
  align-items:start;
}
.hero-unduh{ padding-bottom: 10px; }
.unduh-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.unduh-prose p{ margin: 0 0 10px; color: var(--muted); line-height: 1.75; }
.unduh-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.pill{
  display:inline-flex; align-items:center; flex-wrap:wrap; gap:8px;
  padding:10px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  max-width:100%;
}
.pill b{ color:var(--ink); }
.pill .dot{ width:6px; height:6px; border-radius:50%; background: var(--warn); opacity:.95; }

.hero-title{
  margin:14px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.1;
  letter-spacing:-.6px;
}
.hero-desc{
  margin:0 0 18px;
  color:var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height:1.7;
}

.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--ink);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.07); }
.btn-meta{ display:block; font-size:12px; color:var(--muted2); }
.btn{ max-width:100%; }
.btn-meta{ overflow-wrap:anywhere; }
.btn-primary{
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,211,167,.85));
}
.btn-primary:hover{ filter: brightness(1.03); }
.btn-ghost{ background: transparent; }
.btn-soft{ background: var(--card); border:1px solid var(--line); }
.btn-block{ width:100%; }

.hero-kpis{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.kpi{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:12px 12px 10px;
}
.kpi-top{ color:var(--muted2); font-size:12px; }
.kpi-val{ font-weight:850; font-size:22px; margin-top:6px; letter-spacing:-.3px; }
.kpi-val small{ font-size:12px; color:var(--muted2); font-weight:700; margin-left:4px; }
.kpi-sub{ color:var(--muted); font-size:12px; margin-top:6px; }

.hero-panel{ display:flex; flex-direction:column; gap:12px; }
.logo-tile{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:14px;
  display:flex;
  justify-content:center;
}
.hero-logo{
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display:block;
}
.panel{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-head{
  padding:14px 14px 12px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.panel-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.16);
}
html[data-theme="light"] .panel-badge{ background: rgba(255,255,255,.55); }
.panel-title{ margin-top:10px; font-weight:800; font-size:16px; }
.panel-sub{ margin-top:4px; font-size:12px; color:var(--muted2); }
.panel-body{ padding:12px 14px 14px; }
.dl-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.dl-row:last-of-type{ border-bottom:none; }
.dl-key{ color:var(--muted2); font-size:13px; }
.dl-val{ font-size:13px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color:var(--muted); overflow-wrap:anywhere; }
.panel-actions{ display:grid; gap:10px; margin-top:12px; }
.panel-note{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.22);
  color:var(--muted);
  background: rgba(255,255,255,.04);
}
.panel-note p{ margin:0 0 8px; }
.inline-link{ color:var(--ink); font-weight:700; }

.versions{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:12px 14px;
}
.versions-title{ font-weight:800; margin-bottom:10px; }
.versions-list{ list-style:none; padding:0; margin:0; }
.versions-list li{
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.versions-list li:first-child{ border-top:none; }
.versions-list b{ color:var(--ink); }

/* unduh page cards */
.dl-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:14px;
}
.dl-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.dl-title{ font-weight:850; letter-spacing:-.1px; }
.dl-sub{ margin-top:6px; font-size:12px; color:var(--muted2); }
.dl-kpis{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  padding:10px 0 2px;
}
.dl-kpi{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
}
.dl-k{ font-size:12px; color:var(--muted2); }
.dl-v{ margin-top:6px; font-size:13px; }
.dl-actions{ display:grid; gap:10px; margin-top:12px; }
.hash-box{
  margin-top:12px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius: 18px;
  padding:12px;
  background: rgba(255,255,255,.03);
}
.hash-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.hash{ font-size:12px; }
.dl-older{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:12px 14px;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.trust-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.trust-steps{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.step{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
}
.step b{
  width:26px; height:26px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.step span{ color:var(--muted); line-height:1.6; }
.note-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.ver-review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.ver-review{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:14px 14px 12px;
}
.ver-review header{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.ver-review p{ margin:0; color:var(--muted); line-height:1.75; }

/* masuk page */
.page-masuk .hero-masuk{ padding-bottom: 10px; }
.page-masuk .masuk-shell{
  display:grid;
  gap:14px;
}
.page-masuk .masuk-head{ max-width: 72ch; }
.page-masuk .masuk-main{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:12px;
  align-items:start;
}
.page-masuk .masuk-card{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.page-masuk .masuk-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.page-masuk .logo-chip{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.page-masuk .logo-chip-img{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  object-fit: cover;
  display:block;
}
.page-masuk .masuk-card-body{ padding:14px; }
.page-masuk .masuk-prose p{ margin:0 0 10px; color:var(--muted); line-height:1.75; }
.page-masuk .masuk-actions{ display:grid; gap:10px; margin-top:12px; }
.page-masuk .masuk-links{ display:flex; flex-wrap:wrap; gap:12px; margin-top:12px; }

.page-masuk .side-card{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-masuk .side-card h2{ margin:0 0 10px; font-size:16px; }
.page-masuk .side-list{ list-style:none; padding:0; margin:0 0 12px; }
.page-masuk .side-list li{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.page-masuk .side-list li:first-child{ border-top:none; }
.page-masuk .side-list b{ color:var(--ink); }

/* benefit accordion */
.page-masuk .benefit-accordion{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.page-masuk .benefit-item{ border-top:1px solid var(--line); }
.page-masuk .benefit-item:first-child{ border-top:none; }
.page-masuk .benefit-item summary{
  cursor:pointer;
  padding:14px 14px;
  list-style:none;
  font-weight:800;
}
.page-masuk .benefit-item summary::-webkit-details-marker{ display:none; }
.page-masuk .benefit-body{ padding:0 14px 14px; color:var(--muted); }
.page-masuk .benefit-body b{ color:var(--ink); }

/* timeline */
.page-masuk .timeline{
  display:grid;
  gap:12px;
}
.page-masuk .t-item{
  display:grid;
  grid-template-columns: 16px 1fr;
  gap:12px;
  align-items:start;
}
.page-masuk .t-dot{
  width:12px; height:12px;
  border-radius: 999px;
  margin-top:16px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,211,167,.85));
}
.page-masuk .t-card{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-masuk .t-card h3{ margin:0 0 8px; font-size:15px; }
.page-masuk .t-card p{ margin:0 0 12px; color:var(--muted); line-height:1.7; }

/* akses page */
.page-akses .hero-akses{ padding-bottom: 10px; }
.page-akses .akses-hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.page-akses .akses-prose p{ margin:0 0 10px; color:var(--muted); line-height:1.75; }
.page-akses .akses-prose .lead{ color: var(--muted); }
.page-akses .akses-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.page-akses .side-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.page-akses .check{
  list-style:none;
  padding:0;
  margin:0 0 12px;
  display:grid;
  gap:10px;
}
.page-akses .check li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
}
.page-akses .check b{
  width:26px; height:26px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.page-akses .check span{ color:var(--muted); line-height:1.6; }
.page-akses .net-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.page-akses .net-row{
  padding:14px;
  border-top:1px solid var(--line);
  display:grid;
  gap:8px;
}
.page-akses .net-row:first-child{ border-top:none; }
.page-akses .net-row b{ font-size:14px; }
.page-akses .net-row span{ color:var(--muted); line-height:1.7; }

.page-akses .about-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-akses .about-card p{ margin:0 0 10px; color:var(--muted); line-height:1.75; }

.page-akses .why-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.page-akses .why-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-akses .why-card h3{ margin:0 0 8px; font-size:15px; }
.page-akses .why-card p{ margin:0; color:var(--muted); line-height:1.75; }

/* dokumentasi page */
.page-doc .hero-doc{ padding-bottom: 10px; }
.page-doc .doc-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.page-doc .doc-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.page-doc .doc-quick-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-doc .doc-quick-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.page-doc .doc-steps{
  list-style:none;
  padding:0;
  margin:0 0 12px;
  display:grid;
  gap:10px;
}
.page-doc .doc-steps li{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
}
.page-doc .doc-steps b{ color:var(--ink); }
.page-doc .doc-steps span{ color:var(--muted); line-height:1.6; text-align:right; }

.page-doc .doc-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-doc .doc-list{
  margin:0;
  padding-left: 1.2em;
  color:var(--muted);
}
.page-doc .doc-list li{ margin:8px 0; line-height:1.7; }

/* keamanan page */
.page-sec .hero-sec{ padding-bottom: 10px; }
.page-sec .sec-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.page-sec .sec-body p{ margin:0 0 10px; color:var(--muted); line-height:1.75; }
.page-sec .sec-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

/* pembaruan page */
.page-upd .hero-upd{ padding-bottom: 10px; }
.page-upd .upd-hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.page-upd .upd-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.page-upd .upd-mini{
  display:grid;
  gap:10px;
  margin-bottom:12px;
}
.page-upd .upd-mini-row{
  display:grid;
  grid-template-columns: .9fr .7fr .7fr;
  gap:10px;
  align-items:center;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
}
.page-upd .upd-mini-row b{ color:var(--ink); }
.page-upd .upd-mini-row i{ color:var(--muted2); font-style:normal; text-align:right; }

.page-upd .log-stack{
  display:grid;
  gap:12px;
}
.page-upd .log-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.page-upd .log-head{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.page-upd .log-body h3{ margin:0 0 8px; font-size:15px; }
.page-upd .log-body p{ margin:0 0 8px; color:var(--muted); line-height:1.7; }
.page-upd .log-body ul{ margin:0; padding-left: 1.2em; color:var(--muted); }
.page-upd .log-body li{ margin:6px 0; }

/* legal pages */
.page-legal .hero-legal{ padding-bottom: 10px; }
.page-legal .legal-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:16px;
}
.page-legal .legal-card h2{ margin: 0 0 10px; font-size: 20px; }
.page-legal .legal-card h3{ margin: 16px 0 8px; font-size: 15px; }
.page-legal .legal-card p{ margin: 0 0 10px; color: var(--muted); line-height: 1.75; }
.page-legal .legal-card ul{ margin: 0 0 10px; padding-left: 1.2em; color: var(--muted); }
.page-legal .legal-card li{ margin: 6px 0; }

/* unduh extra content */
.spec-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.spec-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.spec-item{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:10px 10px 8px;
  background: rgba(255,255,255,.03);
}
.spec-item span{ display:block; font-size:12px; color:var(--muted2); }
.spec-item b{ display:block; margin-top:6px; }
.spec-wide{ grid-column: 1 / -1; }
.spec-note{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.spec-note h3{ margin:0 0 8px; font-size:14px; }
.spec-note ul{ margin:0; padding-left: 1.2em; color:var(--muted); }
.spec-note li{ margin: 6px 0; }

.ts-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.ts-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.ts-card h3{ margin:0 0 8px; font-size:15px; }
.ts-card p{ margin:0 0 10px; color:var(--muted); line-height:1.7; }
.ts-card ul{ margin:0; padding-left: 1.2em; color:var(--muted); }
.ts-card li{ margin:6px 0; }

/* sections */
.section{ padding:34px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:14px; }
.section-head h2{ margin:0; font-size:22px; letter-spacing:-.2px; }
.section-sub{ margin:0; color:var(--muted); max-width: 54ch; }

.bento{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:12px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding:14px 14px 12px;
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:var(--muted); line-height:1.75; }
.card-wide{ grid-column: 1 / span 3; }
.card-tint{
  background: rgba(255,255,255,.05);
}
.mini-links{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.mini-links a{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background: rgba(255,255,255,.03);
}
.mini-links a:hover{ text-decoration:none; color:var(--ink); background: rgba(255,255,255,.06); }

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.feature{
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:14px 14px 12px;
  background: rgba(255,255,255,.04);
}
.feature h4{ margin:0 0 8px; font-size:14px; letter-spacing:.2px; }
.feature p{ margin:0; color:var(--muted); line-height:1.7; }

/* app catalog (index) */
.section-apps .section-head{
  flex-wrap:wrap;
}
.section-apps .section-head .inline-link{
  margin-left:auto;
}
.app-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.app-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color:inherit;
  min-width:0;
}
.app-item:hover{
  text-decoration:none;
  background: rgba(255,255,255,.07);
}
.app-icon{
  width:56px;
  height:56px;
  flex-shrink:0;
  border-radius:14px;
  object-fit:cover;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.app-info{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.app-title{
  font-weight:850;
  font-size:15px;
  letter-spacing:-.1px;
}
.app-cat{
  font-size:12px;
  color:var(--muted2);
}
.app-spec{
  font-size:12px;
  color:var(--muted);
}

/* updates */
.updates-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.update-card{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding:14px;
}
.update-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--muted);
}
.badge-soft{ opacity:.9; }
.update-body h3{ margin:0 0 8px; font-size:15px; letter-spacing:-.1px; }
.update-body p{ margin:0 0 8px; color:var(--muted); line-height:1.7; }
.update-body ul{ margin:0; padding-left: 1.2em; color:var(--muted); }
.update-body li{ margin: 6px 0; }
.section-actions{ margin-top:12px; }

.shots-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:12px;
  align-items:start;
}
.shots-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.shots{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.shot{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.shot-img{
  width:100%;
  height:auto;
  aspect-ratio: 384 / 688;
  display:block;
  object-fit: cover;
}
.shot figcaption{
  padding:10px 10px 12px;
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}

.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.review{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:14px 14px 12px;
}
.review header{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom:10px;
}
.review b{ font-weight:850; }
.stars{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
}
.review p{ margin:0; color:var(--muted); line-height:1.75; }

.faq-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:12px;
  align-items:start;
}
.faq-links{ display:flex; gap:12px; margin-top:12px; flex-wrap:wrap; }
.faq-list{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.faq-item{
  border-top:1px solid var(--line);
  padding:0;
}
.faq-item:first-child{ border-top:none; }
.faq-item summary{
  cursor:pointer;
  padding:14px 14px;
  list-style:none;
  color:var(--ink);
  font-weight:700;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin:0;
  padding:0 14px 14px;
  color:var(--muted);
  line-height:1.75;
}

/* quick links */
.link-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.link-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:14px 14px 12px;
  text-decoration:none;
  display:block;
}
.link-card:hover{
  text-decoration:none;
  background: rgba(255,255,255,.06);
}
.link-card b{
  display:block;
  font-weight:850;
  margin-bottom:8px;
  letter-spacing:-.1px;
}
.link-card span{
  display:block;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}

/* aplikasi page */
.page-aplikasi .apl-hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
  padding:28px 0 10px;
}
.page-aplikasi .apl-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.page-aplikasi .apl-aside{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.page-aplikasi .apl-stat-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:14px;
  display:grid;
  gap:10px;
}
.page-aplikasi .apl-stat-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid var(--line);
}
.page-aplikasi .apl-stat-row:last-child{ border-bottom:0; padding-bottom:0; }
.page-aplikasi .apl-stat-row b{ font-size:22px; letter-spacing:-.2px; }
.page-aplikasi .apl-stat-row span{ color:var(--muted); font-size:13px; }
.apl-table-wrap{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.app-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.app-table th{
  text-align:left;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--muted2);
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.app-table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  vertical-align:middle;
}
.app-table tr:last-child td{ border-bottom:0; }
.app-table tr.app-row[hidden],
.app-table tr.app-row--off{
  display:none !important;
}
.app-cell{
  display:flex;
  align-items:center;
  gap:12px;
  color:inherit;
  text-decoration:none;
  min-width:0;
}
.app-cell:hover{ text-decoration:none; color:var(--brand); }
.app-thumb{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  flex-shrink:0;
}
.app-name b{ display:block; font-size:14px; font-weight:850; }
.app-name small{ display:block; font-size:12px; color:var(--muted2); margin-top:2px; }
.app-rating{
  font-weight:800;
  color:var(--warn);
}
.app-pager{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  margin-top:16px;
}
.app-pager a,
.app-pager span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 10px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:inherit;
}
.app-pager a:hover{
  border-color:var(--brand);
  color:var(--brand);
  text-decoration:none;
}
.app-pager-current{
  background:var(--brand) !important;
  border-color:var(--brand) !important;
  color:#fff !important;
}
.app-pager-prev,
.app-pager-next{
  font-size:12px !important;
  min-width:auto !important;
}
.apl-tip{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.apl-guide-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.apl-guide-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.apl-guide-card h3{
  margin:0 0 8px;
  font-size:15px;
}
.apl-guide-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.apl-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:14px;
}

/* app detail page (game.html) */
.page-appd .appd-main{
  padding:8px 0 88px;
}
.appd-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.appd-crumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:12px;
  color:var(--muted2);
}
.appd-crumb a{
  color:var(--brand);
  text-decoration:none;
}
.appd-crumb a:hover{ text-decoration:underline; }
.appd-back{
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  text-decoration:none;
}
.appd-back:hover{ color:var(--ink); text-decoration:none; }
.appd-mast{
  display:grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 280px);
  gap:16px;
  align-items:start;
  padding:18px;
  border:1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  background: rgba(255,255,255,.03);
  margin-bottom:12px;
}
.appd-icon-tile{
  width:96px;
  height:96px;
  border-radius:22px;
  padding:8px;
  border:1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(124,92,255,.18), rgba(0,211,167,.10));
}
.appd-icon-tile img{
  width:100%;
  height:100%;
  border-radius:16px;
  object-fit:cover;
  display:block;
}
.appd-eyebrow{
  margin:0 0 6px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brand2);
}
.appd-title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height:1.12;
  letter-spacing:-.4px;
}
.appd-desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  max-width:62ch;
}
.appd-dlcard{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background: rgba(0,0,0,.12);
}
html[data-theme="light"] .appd-dlcard{ background: rgba(255,255,255,.55); }
.appd-dlmeta{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}
.appd-dlmeta span{
  flex:1;
  text-align:center;
  padding:8px 6px;
  border-radius:10px;
  border:1px solid var(--line);
  font-size:13px;
  font-weight:800;
}
.appd-dlmeta i{
  display:block;
  font-style:normal;
  font-size:10px;
  font-weight:700;
  color:var(--muted2);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:2px;
}
.appd-dltip{
  margin:10px 0 0;
  font-size:11px;
  line-height:1.5;
  color:var(--muted2);
  text-align:center;
}
.appd-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:8px;
  margin-bottom:14px;
}
.appd-stat{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 10px;
  background: rgba(255,255,255,.03);
  min-width:0;
}
.appd-stat b{
  display:block;
  font-size:15px;
  letter-spacing:-.2px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.appd-stat span{
  display:block;
  margin-top:4px;
  font-size:11px;
  color:var(--muted2);
}
.appd-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.appd-span-12{ grid-column: span 12; }
.appd-span-8{ grid-column: span 8; }
.appd-span-6{ grid-column: span 6; }
.appd-span-4{ grid-column: span 4; }
.appd-label{
  margin:0 0 10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted2);
}
.appd-preview,
.appd-install,
.appd-article,
.appd-changelog,
.appd-verdict,
.appd-voices,
.appd-faq{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:16px;
  min-width:0;
}
.appd-preview{
  margin:0;
  overflow:hidden;
  padding:0;
}
.appd-preview img{
  width:100%;
  display:block;
  aspect-ratio: 2 / 1;
  object-fit:cover;
}
.appd-preview figcaption{
  padding:10px 14px;
  font-size:12px;
  color:var(--muted2);
  border-top:1px solid var(--line);
}
.appd-flow{
  list-style:none;
  margin:0 0 10px;
  padding:0;
  display:grid;
  gap:10px;
}
.appd-flow li{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:10px;
  align-items:start;
  font-size:13px;
  line-height:1.55;
  color:var(--muted);
}
.appd-flow span{
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  border:1px solid var(--line);
  background: rgba(124,92,255,.15);
  color:var(--ink);
}
.appd-prose{
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.appd-prose p{ margin:0 0 12px; }
.appd-prose p:last-child{ margin-bottom:0; }
.appd-prose strong{ color:var(--ink); }
.appd-timeline{
  display:grid;
  gap:0;
  border-left:2px solid var(--line);
  margin-left:8px;
  padding-left:16px;
}
.appd-tl-item{
  position:relative;
  padding:0 0 16px;
}
.appd-tl-item:last-child{ padding-bottom:0; }
.appd-tl-item::before{
  content:"";
  position:absolute;
  left:-23px;
  top:4px;
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--muted2);
  border:2px solid var(--bg);
}
.appd-tl-now::before{
  background: var(--brand2);
  box-shadow: 0 0 0 4px rgba(0,211,167,.18);
}
.appd-tl-item b{
  display:block;
  margin-bottom:6px;
  font-size:13px;
}
.appd-tl-item p{
  margin:0;
  font-size:13px;
  line-height:1.65;
  color:var(--muted);
}
.appd-verdict-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.appd-verdict-box{
  border:1px dashed var(--line);
  border-radius:12px;
  padding:12px;
}
.appd-verdict-box h3{
  margin:0 0 8px;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.appd-verdict-plus h3{ color:var(--brand2); }
.appd-verdict-minus h3{ color:#f08a8a; }
.appd-verdict-box ul{
  margin:0;
  padding:0;
  list-style:none;
}
.appd-verdict-box li{
  font-size:13px;
  line-height:1.55;
  color:var(--muted);
  padding:7px 0;
  border-bottom:1px solid var(--line);
}
.appd-verdict-box li:last-child{ border-bottom:0; padding-bottom:0; }
.appd-quote-list{
  display:grid;
  gap:10px;
}
.appd-quote{
  margin:0;
  padding:16px 16px 14px 42px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.02);
  position:relative;
}
.appd-quote-mark{
  position:absolute;
  left:12px;
  top:8px;
  font-size:28px;
  line-height:1;
  color:var(--brand);
  opacity:.65;
}
.appd-quote p{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}
.appd-quote footer{
  font-size:12px;
  color:var(--muted2);
}
.appd-faq-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.appd-faq-card{
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px;
  background: rgba(255,255,255,.02);
}
.appd-faq-card h3{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.4;
}
.appd-faq-card p{
  margin:0;
  font-size:13px;
  line-height:1.65;
  color:var(--muted);
}
.appd-hot{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.appd-hot-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.appd-hot-head .appd-label{ margin-bottom:0; }
.appd-hot-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}
.appd-hot-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
  padding:12px 8px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.02);
  text-decoration:none;
  color:inherit;
  min-width:0;
}
.appd-hot-item:hover{
  text-decoration:none;
  border-color: rgba(124,92,255,.45);
  background: rgba(255,255,255,.05);
}
.appd-hot-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
}
.appd-hot-name{
  font-size:14px;
  font-weight:850;
  letter-spacing:-.1px;
}
.appd-hot-cat{
  font-size:11px;
  color:var(--muted2);
}
.appd-hot-meta{
  font-size:11px;
  color:var(--muted);
}
.appd-hub{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.appd-hub a{
  font-size:12px;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  text-decoration:none;
  background: rgba(255,255,255,.03);
}
.appd-hub a:hover{
  color:var(--ink);
  text-decoration:none;
  border-color: rgba(124,92,255,.45);
}
.appd-dock{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:40;
  border-top:1px solid var(--line);
  background: rgba(11,16,32,.92);
  backdrop-filter: blur(12px);
  display:none;
}
html[data-theme="light"] .appd-dock{
  background: rgba(246,247,251,.94);
}
.appd-dock-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.appd-dock-info{
  min-width:0;
}
.appd-dock-info b{
  display:block;
  font-size:14px;
}
.appd-dock-info span{
  display:block;
  font-size:11px;
  color:var(--muted2);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.appd-dock-btn{
  flex-shrink:0;
  min-width:108px;
}

/* footer */
.site-footer{
  margin-top:20px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
html[data-theme="light"] .site-footer{ background: rgba(255,255,255,.65); }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:12px;
  padding:22px 0;
}
.footer-col h3{ margin:0 0 10px; font-size:13px; color:var(--muted2); letter-spacing:.2px; }
.footer-col a{ display:block; padding:8px 0; color:var(--muted); }
.footer-col a:hover{ color:var(--ink); text-decoration:none; }
.footer-brand .brand-row{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.muted{ color:var(--muted); line-height:1.7; margin:0; }

/* responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .header-actions{
    gap:8px;
    flex-shrink:0;
  }
  .auth-btns{
    gap:6px;
    flex-wrap:nowrap;
  }
  .btn-sm{
    padding:9px 9px;
    font-size:12px;
  }
  .site-header .header-inner{
    padding:12px 0;
  }
  /* performance: reduce heavy shadows */
  .panel,
  .logo-tile{
    box-shadow: none;
  }
  .hero-grid{ grid-template-columns: 1fr; }
  .unduh-hero{ grid-template-columns: 1fr; }
  .page-masuk .masuk-main{ grid-template-columns: 1fr; }
  .page-akses .akses-hero{ grid-template-columns: 1fr; }
  .page-akses .why-grid{ grid-template-columns: 1fr; }
  .page-doc .doc-hero{ grid-template-columns: 1fr; }
  .page-sec .sec-hero{ grid-template-columns: 1fr; }
  .page-upd .upd-hero{ grid-template-columns: 1fr; }
  .page-upd .upd-mini-row{ grid-template-columns: 1fr; }
  .page-upd .upd-mini-row i{ text-align:left; }
  .page-aplikasi .apl-hero{ grid-template-columns: 1fr; }
  .apl-guide-grid{ grid-template-columns: 1fr; }
  .page-appd .appd-mast{
    grid-template-columns: 1fr;
  }
  .page-appd .appd-icon-tile{
    width:80px;
    height:80px;
  }
  .page-appd .appd-strip{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-appd .appd-span-8,
  .page-appd .appd-span-6,
  .page-appd .appd-span-4{
    grid-column: span 12;
  }
  .page-appd .appd-verdict-cols{
    grid-template-columns: 1fr;
  }
  .page-appd .appd-faq-grid{
    grid-template-columns: 1fr;
  }
  .page-appd .appd-hot-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-appd .appd-dock{
    display:block;
  }
  .app-table thead{ display:none; }
  .app-table tr.app-row:not(.app-row--off):not([hidden]){
    display:block;
    border-bottom:1px solid var(--line);
    padding:10px 0;
  }
  .app-table tr.app-row:last-child{ border-bottom:0; }
  .app-table td{
    display:block;
    border:0;
    padding:4px 14px;
  }
  .app-table td:first-child{ padding-top:12px; }
  .app-table td:not(:first-child){
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:13px;
    color:var(--muted);
  }
  .app-table td:not(:first-child)::before{
    content:attr(data-label);
    color:var(--muted2);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.03em;
  }
  .app-table td.app-rating{ color:var(--warn); font-weight:800; }
  .hero-kpis{ grid-template-columns: repeat(2, 1fr); }
  .bento{ grid-template-columns: 1fr; }
  .card-wide{ grid-column: auto; }
  .feature-grid{ grid-template-columns: 1fr; }
  .updates-grid{ grid-template-columns: 1fr; }
  .shots-grid{ grid-template-columns: 1fr; }
  .shots{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }
  .faq-grid{ grid-template-columns: 1fr; }
  .link-grid{ grid-template-columns: 1fr; }
  .app-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .ver-review-grid{ grid-template-columns: 1fr; }
  .spec-grid{ grid-template-columns: 1fr; }
  .ts-grid{ grid-template-columns: 1fr; }
  /* page-masuk: already single column */
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}
