:root {
  --ink: #0f1c1a;
  --ink-soft: #243532;
  --sea: #1a6b5c;
  --sea-deep: #0f4a3f;
  --ember: #c45c26;
  --ember-soft: #e08a4f;
  --foam: #e8f2ef;
  --mist: #f5f8f7;
  --line: #c9d8d3;
  --ok: #1f8a5b;
  --warn: #b7791f;
  --bad: #b42318;
  --paper: #fbfcfb;
  --max: 1120px;
  --font: "Figtree", "Segoe UI", sans-serif;
  --display: "Syne", "Figtree", sans-serif;
  --shadow: 0 18px 40px rgba(15, 28, 26, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  color: var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(180deg, #f3f7f5 0%, var(--paper) 240px);
  background-repeat: no-repeat;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
p { margin: 0 0 1em; line-height: 1.7; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; line-height: 1.7; }
li { margin: 0.4em 0; line-height: 1.65; }
li > ul, li > ol { margin: 0.35em 0 0.55em; }
h1, h2, h3, h4 { line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--sea-deep); }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }
.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--ember); color: #fff; padding: 0.75rem 1rem; font-weight: 700;
}
.skip:focus { top: 1rem; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #fbfcfb;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 16px rgba(15,28,26,0.05);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink); min-width: 0;
}
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.brand-text {
  font-family: var(--display); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -0.03em; line-height: 1;
}
.brand-text span { color: var(--sea); }
.nav-list {
  display: none; list-style: none; align-items: center; gap: 0.15rem;
}
.nav-list a, .nav-list button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; color: var(--ink-soft); padding: 0.55rem 0.85rem;
  text-decoration: none; font-weight: 600; border-radius: 999px;
}
.nav-list a:hover, .nav-list button:hover, .nav-list a[aria-current="page"] {
  color: var(--sea-deep); background: var(--foam);
}
.nav-item { position: relative; }
.nav-drop {
  display: none; position: absolute; top: calc(100% + 0.4rem); left: 0;
  min-width: 190px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 0.45rem; box-shadow: var(--shadow); list-style: none;
}
.nav-item:hover > .nav-drop, .nav-item:focus-within > .nav-drop, .nav-item.open > .nav-drop { display: block; }
.nav-drop a {
  display: block; border-radius: 10px; padding: 0.65rem 0.85rem; color: var(--ink);
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.25rem; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  font-family: inherit; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: #a84c1d; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sea); color: var(--sea-deep); }
.btn-compact { padding: 0.45rem 0.85rem; font-size: 0.85rem; min-height: 36px; }
.menu-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; display: grid; place-items: center; gap: 5px; cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: 0.25s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  .nav-list { display: flex; }
  .menu-toggle { display: none; }
}
.nav-list.is-open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 1rem; box-shadow: var(--shadow); gap: 0.2rem;
}
.nav-list.is-open .nav-drop { position: static; box-shadow: none; margin-top: 0.35rem; }
.nav-list.is-open .nav-item.open > .nav-drop { display: block; }

.hero {
  position: relative; min-height: min(88vh, 760px);
  display: grid; align-items: end;
  color: #f4faf8; overflow: hidden;
  background-color: #0f1c1a;
  background-image:
    linear-gradient(115deg, rgba(15,28,26,0.92) 18%, rgba(15,28,26,0.58) 55%, rgba(26,107,92,0.4) 100%),
    url("/waake6/wayang88-logo.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 96px;
  background: linear-gradient(to top, var(--paper), transparent); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1; padding: 7rem 0 4.5rem;
  max-width: 720px;
}
.hero-brand {
  font-family: var(--display); font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800; letter-spacing: -0.06em; line-height: 0.95; margin-bottom: 0.65rem;
}
.hero-brand em { font-style: normal; color: var(--ember-soft); }
.hero h1 {
  font-family: var(--display); font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.28; letter-spacing: -0.02em;
  max-width: 20ch; margin: 0 0 0.85rem;
}
.hero-lead {
  font-size: 1.125rem; line-height: 1.6; opacity: 0.92;
  max-width: 40ch; margin: 0 0 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

.ticker {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line); background: #fff; border-radius: 18px;
  overflow: hidden; margin: -2.5rem auto 3rem; position: relative; z-index: 2;
}
.ticker-item {
  padding: 1.15rem 1.1rem 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ticker-item:nth-child(2n) { border-right: 0; }
.ticker-item strong {
  display: block; font-family: var(--display); font-size: 1.55rem;
  letter-spacing: -0.03em; color: var(--sea-deep); line-height: 1.15; margin-bottom: 0.28rem;
}
.ticker-item span {
  display: block; font-size: 0.84rem; color: var(--ink-soft); font-weight: 600;
  line-height: 1.35; margin-bottom: 0.18rem;
}
.ticker-item small { display: block; color: #6b7c77; font-size: 0.76rem; line-height: 1.35; }
@media (min-width: 800px) {
  .ticker { grid-template-columns: repeat(5, 1fr); }
  .ticker-item { border-bottom: 0; }
  .ticker-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .ticker-item:last-child { border-right: 0; }
}

main { padding-bottom: 2.5rem; }
.section {
  padding: 2.75rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.section + .section { padding-top: 2.25rem; }
.section-label {
  display: inline-block; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 0.45rem; line-height: 1.3;
}
.section h2 {
  font-family: var(--display); font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  letter-spacing: -0.03em; line-height: 1.22; margin: 0 0 0.7rem; max-width: 22ch;
}
.section-intro {
  color: var(--ink-soft); max-width: 64ch; margin: 0 0 1.35rem;
  line-height: 1.68; font-size: 1.05rem;
}
.section > p { max-width: 68ch; margin-bottom: 1em; line-height: 1.72; }
.section > ul, .section > ol { max-width: 68ch; margin-bottom: 1.15em; }

.author-band {
  display: grid; gap: 1.15rem; padding: 1.65rem 0 1.85rem;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line);
  margin: 0.5rem 0 2rem;
}
@media (min-width: 800px) {
  .author-band { grid-template-columns: 120px 1fr; align-items: start; gap: 1.5rem; }
}
.author-mark {
  width: 96px; height: 96px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--sea), var(--ember), var(--sea));
  display: grid; place-items: center; color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 1.4rem; line-height: 1;
}
.author-band h3 {
  font-family: var(--display); font-size: 1.22rem; line-height: 1.3;
  margin: 0 0 0.35rem;
}
.author-meta {
  display: grid; gap: 0.55rem; margin: 0.7rem 0 1rem;
  font-size: 0.95rem; line-height: 1.55;
}
.author-note {
  background: var(--foam); border-left: 3px solid var(--sea); padding: 0.95rem 1.1rem;
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; margin: 0;
}

.feature-rail { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature-row {
  display: grid; gap: 0.75rem; padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .feature-row { grid-template-columns: 180px 1fr; align-items: start; gap: 1.35rem; }
}
.feature-kicker {
  font-family: var(--display); font-weight: 800; color: var(--sea);
  letter-spacing: -0.02em; font-size: 1.05rem; line-height: 1.35; padding-top: 0.15rem;
}
.feature-row h3 { font-size: 1.15rem; line-height: 1.35; margin: 0 0 0.4rem; }
.feature-row p { color: var(--ink-soft); margin: 0 0 0.7rem; line-height: 1.68; }
.feature-callout {
  display: inline-block; font-size: 0.82rem; font-weight: 700; line-height: 1.4;
  color: var(--sea-deep); background: var(--foam); padding: 0.32rem 0.6rem;
  margin: 0 0 0.55rem;
}
.more-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; color: var(--ember); text-decoration: none;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.more-link:hover { border-bottom-color: var(--ember); color: var(--ember); }

.figure-block { margin: 1rem 0 1.4rem; }
.figure-block img {
  width: min(100%, 420px); margin-inline: auto; border-radius: 18px;
  border: 1px solid var(--line); background: #fff;
}

/* Install lab — distinct from original step-cards / timeline */
.install-lab {
  margin: 1rem 0 2.5rem;
  padding: 0;
  --install-rail: 3.75rem;
  --install-gap: 1rem;
}
.install-lab-stage {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.75rem 0 2rem;
  border-top: 3px solid var(--ink);
}
@media (min-width: 900px) {
  .install-lab-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
    gap: 2.5rem;
    padding: 2.25rem 0 2.5rem;
  }
}
.install-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  line-height: 1.35;
}
.install-lab-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 15ch;
  margin: 0 0 0.9rem;
}
.install-lead {
  margin: 0 0 0.85rem;
  max-width: 42ch;
  color: var(--ink-soft);
  line-height: 1.68;
  font-size: 1.05rem;
}
.install-lead:last-of-type {
  margin-bottom: 1.15rem;
}
.install-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.install-chips li {
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-soft);
}
.install-lab-media {
  margin: 0;
  min-height: 220px;
  background:
    linear-gradient(160deg, rgba(26,107,92,0.12), rgba(196,92,38,0.08)),
    var(--foam);
  border: 1px solid var(--line);
  overflow: hidden;
}
.install-lab-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.install-alert {
  display: grid;
  gap: 0.35rem var(--install-gap);
  grid-template-columns: var(--install-rail) minmax(0, 1fr);
  align-items: start;
  margin: 0;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px dashed var(--line);
}
.install-alert-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--bad);
  line-height: 1.4;
  padding-top: 0.15rem;
}
.install-alert strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.install-alert p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  font-size: 0.98rem;
}
.section > ol.install-flow,
ol.install-flow {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
  width: 100%;
  max-width: none;
}
.install-panel {
  position: relative;
  display: block;
  list-style: none;
  margin: 0;
  padding: 1.6rem 0 1.7rem;
  border-top: 1px solid var(--line);
  counter-increment: install-step;
  width: 100%;
  box-sizing: border-box;
}
.install-panel:last-child { border-bottom: 1px solid var(--line); }
.install-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: start;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 719px) {
  .install-alert {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
.install-index {
  order: 2;
  justify-self: end;
  text-align: right;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: rgba(26, 107, 92, 0.28);
  padding-top: 0.1rem;
}
.install-panel.is-critical .install-index { color: rgba(180, 35, 24, 0.28); }
.install-panel.is-done .install-index { color: rgba(31, 138, 91, 0.32); }
.install-index::before {
  content: counter(install-step, decimal-leading-zero);
}
.install-body {
  order: 1;
  min-width: 0;
}
.install-body h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}
.install-body > p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.install-body ol {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-mini;
  color: var(--ink-soft);
  display: grid;
  gap: 0.85rem;
}
.install-body ol > li {
  counter-increment: install-mini;
  position: relative;
  display: block;
  margin: 0;
  padding: 0.15rem 0 0.15rem 2rem;
  line-height: 1.7;
  font-size: 1.02rem;
}
.install-body ol > li::before {
  content: counter(install-mini) ".";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}
.install-body ol > li strong {
  font-weight: 700;
  color: var(--ink);
}
.install-split {
  display: grid;
  gap: 1.15rem 1.75rem;
  margin: 1rem 0 0;
  align-items: start;
}
@media (min-width: 720px) {
  .install-split {
    grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
    column-gap: 2rem;
    width: 100%;
  }
  .install-split > ol {
    padding-left: 0.5rem;
    max-width: none;
  }
}
.install-shot {
  margin: 0;
  max-width: none;
}
.install-shot img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}
.install-split > ol {
  margin: 0;
  min-width: 0;
  align-content: start;
}
.install-note {
  margin-top: 0.9rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.install-note.warn { color: #8a5a12; border-top-color: #e2c28a; }
.install-note.danger { color: #8f2a22; border-top-color: #e3a39c; }
.install-hash {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0.95rem;
  background: var(--ink);
  color: #d7ebe4;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  word-break: break-all;
}
.install-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding: 1.15rem 0 0;
  border-top: 2px solid var(--ink);
}
.install-cta p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}


.faq-shell {
  background: var(--ink); color: #e7f1ee; padding: 3.5rem 0;
  margin: 2.5rem 0;
  width: 100%;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.faq-shell .section-label { color: var(--ember-soft); }
.faq-shell h2 { color: #fff; }
.faq-shell .section-intro { color: #b7cbc4; margin-bottom: 1.5rem; }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 0.35rem; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.14); padding: 0.15rem 0 0.7rem;
}
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 700; font-size: 1.05rem; line-height: 1.4;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 0.75rem 0; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--display); font-size: 1.35rem; line-height: 1; color: var(--ember-soft);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-body { color: #b7cbc4; padding: 0.15rem 0 0.85rem; line-height: 1.68; }
.faq-body p { margin: 0 0 0.85em; line-height: 1.68; }
.faq-body li { margin: 0.4em 0; line-height: 1.6; }
.faq-body ul, .faq-body ol { margin: 0.35em 0 0.9em; padding-left: 1.2rem; }
.faq-table { width: 100%; border-collapse: collapse; margin: 0.85rem 0 1rem; font-size: 0.92rem; }
.faq-table th, .faq-table td {
  text-align: left; padding: 0.6rem 0.65rem; border-bottom: 1px solid rgba(255,255,255,0.12);
  line-height: 1.45; vertical-align: top;
}
.faq-table th { color: #fff; }

.data-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 720px; line-height: 1.45; }
.data-table th {
  background: var(--ink); color: #fff; text-align: left; padding: 0.8rem 0.9rem;
  font-family: var(--display); letter-spacing: -0.01em; line-height: 1.3;
}
.data-table td { padding: 0.78rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table td small { display: inline-block; margin-top: 0.2rem; line-height: 1.4; }
.data-table tr:nth-child(even) td { background: var(--mist); }
.data-table .good { color: var(--ok); font-weight: 700; }
.data-table .mid { color: var(--warn); font-weight: 700; }
.data-table tfoot td { background: var(--foam); font-weight: 800; }

.compare-list { display: grid; gap: 0.85rem; margin: 1.35rem 0; }
.compare-item {
  padding: 1rem 1.15rem; background: #fff; border-left: 4px solid var(--sea);
  border-radius: 0 14px 14px 0;
}
.compare-item h4 { margin: 0 0 0.35rem; line-height: 1.35; }
.compare-item p { margin: 0; line-height: 1.62; color: var(--ink-soft); }
.cta-slab {
  margin-top: 1.75rem; padding: 1.75rem 1.5rem; border-radius: 20px;
  background: linear-gradient(135deg, var(--sea-deep), var(--ink));
  color: #fff; text-align: center;
}
.cta-slab h3 { margin: 0; line-height: 1.3; }
.cta-slab p { opacity: 0.9; margin: 0.7rem auto 1.15rem; max-width: 48ch; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-slab .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }

.related { display: grid; gap: 0.35rem; }
@media (min-width: 800px) { .related { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.related a {
  display: block; text-decoration: none; color: inherit; padding: 1.15rem 0;
  border-top: 2px solid var(--ink); transition: color 0.25s;
}
.related a:hover { color: var(--sea); }
.related h3 { font-family: var(--display); font-size: 1.15rem; line-height: 1.3; margin: 0 0 0.4rem; }
.related p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; margin: 0; }

.refs { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem 1.25rem; }
.refs h2 { text-align: center; max-width: none; margin: 0 0 1.4rem; line-height: 1.25; }
.ref-block { margin-bottom: 1.4rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.ref-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.ref-block h3 { font-size: 1.05rem; line-height: 1.35; margin: 0 0 0.65rem; }
.ref-block ul {
  list-style: none; display: grid; gap: 0.55rem; color: var(--ink-soft);
  font-size: 0.95rem; margin: 0; padding: 0; line-height: 1.55;
}
.ref-block li { margin: 0; line-height: 1.55; padding-left: 0; }
.ref-block li::before { content: ">"; color: var(--sea); font-weight: 800; margin-right: 0.45rem; }
.changelog { display: grid; gap: 0.65rem; }
.change {
  padding: 0.9rem 1rem; border-left: 3px solid var(--line); background: var(--mist); line-height: 1.6;
}
.change.latest { border-left-color: var(--ember); background: #fff7ed; }
.disclaimer {
  margin-top: 1rem; padding: 1rem 1.1rem; background: #fff8eb; border: 1px solid #f0d7a8;
  border-radius: 14px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65;
}

.site-footer {
  background: var(--ink); color: #b7cbc4; padding: 3rem 0 1.5rem; margin-top: 2.5rem;
}
.footer-grid { display: grid; gap: 1.75rem; margin-bottom: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }
.site-footer h3, .site-footer h4 {
  color: #fff; font-family: var(--display); margin: 0 0 0.7rem; line-height: 1.3;
}
.site-footer p { margin: 0; line-height: 1.6; }
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; margin: 0; padding: 0; }
.site-footer li { margin: 0; line-height: 1.45; }
.site-footer a { color: #b7cbc4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.15rem; font-size: 0.9rem; line-height: 1.45;
}
.footer-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* Subpage hero — shorter first viewport */
.hero--page {
  min-height: min(52vh, 520px);
  align-items: end;
}
.hero--page .hero-inner { padding: 5.5rem 0 3.25rem; max-width: 760px; }
.hero--page .hero-brand { font-size: clamp(2.2rem, 7vw, 4.2rem); margin-bottom: 0.45rem; }
.hero--page h1 { max-width: 28ch; font-size: clamp(1.45rem, 3.2vw, 2.15rem); }

.page-crumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; align-items: center;
  font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 1.25rem; line-height: 1.4;
}
.page-crumb a { color: var(--sea); text-decoration: none; font-weight: 600; }
.page-crumb a:hover { text-decoration: underline; }
.page-crumb span[aria-hidden] { opacity: 0.45; }

.catalog-filters {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1.5rem; padding: 0; list-style: none;
}
.catalog-filters a, .catalog-filters span {
  display: inline-flex; align-items: center; padding: 0.4rem 0.85rem;
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  text-decoration: none; font-size: 0.84rem; font-weight: 700; line-height: 1.3;
}
.catalog-filters a:hover { border-color: var(--sea); color: var(--sea-deep); }
.catalog-filters .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.catalog-item {
  display: grid; gap: 1rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .catalog-item {
    grid-template-columns: 140px minmax(0, 1fr) auto;
    align-items: start; gap: 1.35rem;
  }
}
.catalog-item:first-child { border-top: 1px solid var(--line); }
.catalog-thumb {
  margin: 0; width: 100%; max-width: 140px;
  border: 1px solid var(--line); background: var(--foam); overflow: hidden;
}
.catalog-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.catalog-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 0.55rem; padding: 0; list-style: none; }
.catalog-meta li {
  margin: 0; padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 700;
  line-height: 1.3; background: var(--foam); color: var(--sea-deep);
}
.catalog-item h2, .catalog-item h3 {
  font-family: var(--display); font-size: 1.25rem; line-height: 1.3;
  letter-spacing: -0.02em; margin: 0 0 0.4rem; max-width: none;
}
.catalog-item p { color: var(--ink-soft); margin: 0 0 0.75rem; line-height: 1.65; max-width: 58ch; }
.catalog-side {
  display: grid; gap: 0.45rem; justify-items: start;
  font-size: 0.88rem; color: var(--ink-soft); line-height: 1.4;
}
.catalog-side strong {
  font-family: var(--display); font-size: 1.35rem; color: var(--sea-deep);
  letter-spacing: -0.02em; line-height: 1.15;
}
.method-grid {
  display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 0.5rem;
}
.method-grid article {
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .method-grid { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .method-grid article:nth-child(odd) { padding-right: 1rem; }
}
.method-grid h3 {
  font-family: var(--display); font-size: 1.1rem; margin: 0 0 0.4rem; line-height: 1.3;
}
.method-grid p { margin: 0; color: var(--ink-soft); line-height: 1.65; }

.download-shell {
  min-height: 70vh; display: grid; place-items: center; padding: 3rem 1rem;
  background: linear-gradient(180deg, #0f1c1a 0%, #1a6b5c 55%, #fbfcfb 55%);
}
.download-card {
  width: min(100%, 480px); background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow);
}
.download-card h1 {
  font-family: var(--display); font-size: 1.55rem; line-height: 1.25;
  margin: 0 0 0.65rem; letter-spacing: -0.02em;
}
.download-card p { color: var(--ink-soft); margin: 0 0 1.25rem; line-height: 1.6; }
.download-card .btn { width: 100%; margin-bottom: 0.65rem; }
.download-card .note { font-size: 0.88rem; margin: 1rem 0 0; }

/* —— 10 kategori: ledger strip, bukan kartu —— */
.cat-ledger {
  margin: 0.5rem 0 0;
  border-top: 3px solid var(--ink);
}
.cat-row {
  display: grid;
  gap: 0.55rem 1.25rem;
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 720px) {
  .cat-row {
    grid-template-columns: 3.25rem minmax(9rem, 14rem) minmax(0, 1fr) auto;
    gap: 1rem 1.5rem;
  }
}
.cat-row:nth-child(even) { background: linear-gradient(90deg, var(--mist) 0%, transparent 72%); }
.cat-no {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: rgba(26, 107, 92, 0.45);
  line-height: 1;
}
.cat-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.cat-blurb {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 52ch;
}
.cat-tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 719px) {
  .cat-tag { justify-self: start; }
}

/* —— 5 tahap audit: protokol vertikal —— */
.audit-band {
  background: var(--ink);
  color: #e7f1ee;
  padding: 3rem 0;
  margin: 2.25rem 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.audit-band .section-label { color: var(--ember-soft); }
.audit-band h2 { color: #fff; max-width: 22ch; }
.audit-band .section-intro { color: #b7cbc4; }
.audit-track {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(255,255,255,0.14);
}
.audit-step {
  position: relative;
  margin: 0;
  padding: 0 0 1.75rem 1.35rem;
}
.audit-step:last-child { padding-bottom: 0; }
.audit-step::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember-soft);
  box-shadow: 0 0 0 4px rgba(224, 138, 79, 0.2);
}
.audit-step-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.45rem;
}
.audit-phase {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(224, 138, 79, 0.55);
}
.audit-step h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.audit-dur {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8aa89e;
}
.audit-step p {
  margin: 0 0 0.65rem;
  color: #b7cbc4;
  line-height: 1.65;
  max-width: 58ch;
  font-size: 0.98rem;
}
.audit-gate {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px dashed rgba(255,255,255,0.12);
  max-width: 58ch;
}
.audit-gate dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember-soft);
}
.audit-gate dd {
  margin: 0 0 0.45rem;
  color: #9eb8b0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.audit-gate dd:last-child { margin-bottom: 0; }
.cat-foot {
  margin: 1.25rem 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}
.audit-band .audit-foot {
  margin: 1.75rem 0 0;
  color: #b7cbc4;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.65;
}
.audit-band .audit-foot a {
  color: var(--ember-soft);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 138, 79, 0.45);
}
.audit-band .audit-foot a:hover { color: #fff; border-bottom-color: #fff; }

.kriteria-short {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
  max-width: 64ch;
}
.kriteria-short li {
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.02rem;
}
.kriteria-short strong { color: var(--ink); }

/* Download page — package split */
.pkg-split {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  border-top: 3px solid var(--ink);
}
.pkg-card {
  padding: 1.5rem 0 1.65rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .pkg-split {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
  .pkg-card:first-child {
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
  }
  .pkg-card { border-bottom: 0; padding-bottom: 1.5rem; }
}
.pkg-card .pkg-label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}
.pkg-card h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.pkg-size {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--sea-deep);
  line-height: 1;
  margin: 0 0 0.85rem;
}
.pkg-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 36ch;
}
.pkg-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.pkg-card li { margin: 0.35em 0; line-height: 1.55; }

.check-strip {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.check-strip article {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
}
.check-strip .n {
  font-family: var(--display);
  font-weight: 800;
  color: var(--sea);
  font-size: 1.15rem;
  line-height: 1.3;
}
.check-strip h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  line-height: 1.35;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.check-strip p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: 58ch;
}

.hash-block {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.2rem;
  background: var(--ink);
  color: #d7ebe4;
}
.hash-block .hash-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember-soft);
}
.hash-block code {
  display: block;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.84rem;
  line-height: 1.55;
  word-break: break-all;
  color: #e7f1ee;
  background: transparent;
  border: 0;
  padding: 0;
}
.hash-block p {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: #9eb8b0;
  line-height: 1.55;
  max-width: 58ch;
}
.hash-note {
  margin: 1.25rem 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Download page — trust / steps / fitur / riwayat / faq */
.trust-bar {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0 1.5rem;
  margin: 0 0 0.5rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .trust-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.5rem;
    align-items: end;
  }
}
.trust-bar .trust-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--sea-deep);
}
.trust-bar p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 42ch;
  font-size: 1.02rem;
}

.time-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
}
.time-rail strong {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--ember);
  line-height: 1;
}
.time-rail span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.4; }

.step-board {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dl-step;
}
.step-board > li {
  counter-increment: dl-step;
  display: grid;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .step-board > li {
    grid-template-columns: 3.5rem minmax(0, 1fr) 5.5rem;
    align-items: start;
  }
}
.step-board > li::before {
  content: counter(dl-step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: rgba(26, 107, 92, 0.4);
  line-height: 1.1;
}
.step-board h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.step-board p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: 54ch;
  font-size: 0.98rem;
}
.step-mins {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  line-height: 1.3;
}
@media (max-width: 719px) {
  .step-mins { order: -1; }
}

.fitur-stack { margin: 0.75rem 0 0; border-top: 3px solid var(--ink); }
.fitur-row {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .fitur-row {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
}
.fitur-k {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--sea);
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding-top: 0.15rem;
}
.fitur-row h3 {
  font-size: 1.08rem;
  margin: 0 0 0.3rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.fitur-row p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: none;
}

.ver-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
}
.ver-list li {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 1.15rem 0 1.15rem 1.1rem;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--line);
}
@media (min-width: 720px) {
  .ver-list li {
    grid-template-columns: 12.5rem minmax(0, 1fr);
    column-gap: 1.75rem;
    align-items: start;
  }
  .ver-list .ver-id { grid-column: 1; }
  .ver-list .ver-when { grid-column: 1; }
  .ver-list p {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }
}
.ver-list li.is-now { border-left-color: var(--ember); background: linear-gradient(90deg, #fff7ed 0%, transparent 55%); padding-left: 1.1rem; }
.ver-list .ver-id {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ver-list .ver-when {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.02em;
}
.ver-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: none;
}

#riwayat .section-intro,
#faq-unduh .section-intro {
  max-width: 78ch;
}

.dl-faq {
  margin: 1rem 0 0;
  width: 100%;
  max-width: none;
}
.dl-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.2rem 0 0.95rem;
}
.dl-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 0.85rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  color: var(--ink);
}
.dl-faq summary::-webkit-details-marker { display: none; }
.dl-faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ember);
  line-height: 1;
}
.dl-faq details[open] summary::after { content: "\2013"; }
.dl-faq .a {
  color: var(--ink-soft);
  line-height: 1.68;
  padding: 0 2rem 0.4rem 0;
  margin: 0;
  font-size: 1rem;
  max-width: none;
}

/* Info APK page — identitas / izin / dataset */
.info-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0.5rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
@media (min-width: 720px) {
  .info-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.info-facts > div {
  padding: 1.1rem 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .info-facts > div {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .info-facts > div:last-child { border-right: 0; }
}
.info-facts-k {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.35rem;
}
.info-facts strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  word-break: break-word;
}
.info-facts small {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

.spec-sheet {
  margin: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--line);
}
.spec-sheet > div {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .spec-sheet > div {
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}
.spec-sheet dt {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
}
.spec-sheet dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}
.spec-sheet code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9em;
  word-break: break-all;
}
.spec-hash code {
  display: block;
  padding: 0.75rem 0.85rem;
  background: var(--ink);
  color: #d7ebe4;
  font-size: 0.82rem;
  line-height: 1.55;
}
.spec-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: none;
}

.perm-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  border-top: 3px solid var(--ink);
}
.perm-list li {
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}
@media (min-width: 720px) {
  .perm-list li {
    grid-template-columns: 16rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}
.perm-name {
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--sea-deep);
  line-height: 1.4;
  word-break: break-word;
}
.perm-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  font-size: 0.98rem;
  max-width: none;
}
.perm-foot {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: none;
}

.info-metrics {
  display: grid;
  gap: 0;
  margin: 0.75rem 0 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .info-metrics { grid-template-columns: 1fr 1fr; }
}
.info-metrics article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .info-metrics article:nth-child(odd) { padding-right: 1.5rem; }
  .info-metrics article:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
}
.info-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--sea-deep);
  line-height: 1.1;
}
.info-metrics span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0.35rem 0 0.5rem;
}
.info-metrics p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: none;
}

.dataset-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0.75rem 0 1rem;
}
@media (min-width: 800px) {
  .dataset-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}
.dataset-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0 0;
  border-top: 3px solid var(--ink);
  height: 100%;
}
.dataset-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.4rem;
}
.dataset-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.dataset-card > p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  max-width: none;
}
.dataset-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}
.dataset-card li { margin: 0.3em 0; }
.dataset-card .btn { align-self: flex-start; margin-top: auto; }
.dataset-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: none;
}
.method-mini {
  padding: 1.15rem 0 0;
  border-top: 1px dashed var(--line);
}
.method-mini h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.method-mini p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: none;
}

.hash-block--wide p { max-width: none; }

.info-safe-grid article p { max-width: none; }
@media (min-width: 800px) {
  .info-safe-grid article:nth-child(even) { padding-left: 1rem; }
}

#faq-info .section-intro,
#identitas .section-intro,
#dataset .section-intro,
#izin .section-intro,
#lab-ringkas .section-intro,
#apa-itu-apk .section-intro,
#struktur .section-intro,
#keamanan-apk .section-intro,
#verifikasi .section-intro {
  max-width: 78ch;
}

#batas > p { max-width: none; }

.hero--page h1 { max-width: 32ch; }

.info-split {
  display: grid;
  gap: 1.25rem;
  margin: 0.75rem 0 0;
  align-items: start;
}
@media (min-width: 800px) {
  .info-split {
    grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
    gap: 2rem;
  }
  .info-split--rev {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  }
  .info-split--rev .info-shot { order: 2; }
  .info-split--rev .verify-steps { order: 1; }
}
.info-shot {
  margin: 0;
  width: 100%;
}
.info-shot img {
  width: 100%;
  margin-inline: 0;
  max-width: none;
}
.info-bullets {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.info-bullets li { margin: 0.45em 0; line-height: 1.6; }
.info-split > div > p {
  margin: 0 0 0.85em;
  color: var(--ink-soft);
  line-height: 1.68;
  max-width: none;
}

.struct-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  border-top: 3px solid var(--ink);
}
.struct-list li {
  margin: 0;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}
@media (min-width: 720px) {
  .struct-list li {
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}
.struct-k {
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--sea-deep);
  line-height: 1.4;
  word-break: break-word;
}
.struct-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  font-size: 0.98rem;
  max-width: none;
}

.verify-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ver-step;
}
.verify-steps > li {
  counter-increment: ver-step;
  margin: 0;
  padding: 0.95rem 0 0.95rem 3rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.verify-steps > li::before {
  content: counter(ver-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.95rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: rgba(26, 107, 92, 0.45);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.verify-steps h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.verify-steps p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
  font-size: 0.96rem;
  max-width: none;
}
