/* elephant.css — layout: left dock + editorial stream */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f7f5f0;
  --cream-dark: #ebe8e0;
  --ink: #1a1a2e;
  --ink-mid: #3d3d56;
  --ink-soft: #6b6b80;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #ccfbf1;
  --coral: #ff6b6b;
  --coral-dark: #ee5a5a;
  --white: #ffffff;
  --dock-w: 200px;
  --rail-w: 58px;
  --font: 'DM Sans', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CTA buttons ── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  transition: transform 0.12s, background 0.15s, color 0.15s;
}
.cta:active { transform: scale(0.97); }
.cta--fill { background: var(--teal); color: var(--white); }
.cta--fill:hover { background: var(--teal-dark); }
.cta--line { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.cta--line:hover { background: var(--ink); color: var(--white); }
.cta--wide { width: 100%; max-width: 420px; }

/* ── LEFT DOCK (desktop only) ── */
.dock {
  display: none;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--dock-w);
  background: var(--ink);
  color: var(--white);
  z-index: 1000;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem 1rem;
  gap: 1.25rem;
}

.dock__logo {
  display: block;
  padding-bottom: 0.5rem;
}

.dock__logo img {
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.dock__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  padding: 0.5rem 0;
}

.dock__nav a {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.dock__nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.dock__nav a.is-here {
  color: var(--teal-light);
  background: rgba(13,148,136,0.18);
}

.dock__dl {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.dock__ver { font-size: 0.8125rem; font-weight: 700; color: var(--teal-light); }
.dock__size { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }

.dock__btn {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  line-height: 1.2;
}
.dock__btn:hover { background: var(--teal-dark); }
.dock__btn--line {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}
.dock__btn--line:hover { border-color: var(--white); color: var(--white); }

/* ── MOBILE top + rail ── */
.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  padding-right: calc(1rem + var(--rail-w));
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 400;
}

.mob-top__menu {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mob-drawer[hidden] { display: none; }
.mob-drawer {
  position: fixed;
  inset: 0;
  top: 53px;
  background: var(--cream);
  z-index: 390;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mob-drawer a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--ink-mid);
}

.mob-rail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: fixed;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 450;
  width: var(--rail-w);
  padding: 0.45rem 0.35rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-right: none;
  border-radius: 12px 0 0 12px;
  box-shadow: -6px 4px 28px rgba(26, 26, 46, 0.14);
}

.mob-rail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.55rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
}

.mob-rail a:active {
  transform: scale(0.96);
}

.mob-rail__auth {
  min-height: 58px;
  color: var(--ink-mid);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.mob-rail__auth:active {
  background: var(--cream-dark);
}

.mob-rail__auth-sep {
  font-size: 0.875rem;
  line-height: 1;
  opacity: 0.9;
}

.mob-rail__dl {
  min-height: 72px;
  color: var(--white) !important;
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-dark) 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.45);
  gap: 0.12rem;
}

.mob-rail__dl-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.mob-rail__dl-word {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.mob-rail__dl-apk {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.mob-rail__dl:active {
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}

/* ── PAGE STREAM ── */
.page {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* ── INTRO: full-bleed immersive ── */
.intro {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 1.25rem 0;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.intro__bg img {
  position: absolute;
  top: 42%;
  left: 55%;
  transform: translate(-50%, -50%) scale(2.2);
  width: min(360px, 55vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  filter: blur(72px);
  opacity: 0.45;
}

.intro__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.55) 0%, var(--ink) 70%);
}

.intro__body {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-bottom: 2rem;
}

.intro__tag {
  font-size: 0.8125rem;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.intro__body h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.intro__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.intro__actions .cta--line {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.intro__actions .cta--line:hover {
  background: var(--white);
  color: var(--ink);
}

.intro__ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.intro__ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: ticker 28s linear infinite;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SPEC STRIP ── */
.spec {
  scroll-margin-top: 1rem;
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  padding: 1.75rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
}

.spec__inner { max-width: 900px; }

.spec__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.spec__brand img { border-radius: 16px; flex-shrink: 0; }
.spec__brand strong { display: block; font-size: 1.05rem; }
.spec__brand span { font-size: 0.8125rem; color: var(--ink-soft); }

.spec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.spec__grid div {
  background: var(--cream);
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
}
.spec__grid dt {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.spec__grid dd {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.15rem;
}

.spec__goal {
  margin-bottom: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--cream-dark);
}
.spec__goal span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}
.spec__goal p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  margin-top: 0.35rem;
}

.spec__hash {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}
.spec__hash span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.spec__hash code {
  flex: 1 1 200px;
  font-size: 0.625rem;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  color: var(--ink-mid);
  line-height: 1.4;
}
.spec__hash button {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--teal);
  border-radius: 4px;
}
.spec__hash button:hover { background: var(--teal-light); }

/* ── STORY: editorial prose ── */
.story {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  max-width: 820px;
}

.story__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.story__head em { font-style: italic; color: var(--teal); }

.story__prose {
  display: grid;
  gap: 1.5rem;
}

.story__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-mid);
}

.story__pull {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--teal-dark);
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 4px solid var(--coral);
  margin: 0.5rem 0;
}

.story__tail {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── MANIFESTO: numbered vertical list ── */
.manifest {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
}

.manifest__head {
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.manifest__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.manifest__head p { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

.manifest__list {
  list-style: none;
  counter-reset: manifest;
  max-width: 720px;
}

.manifest__item {
  counter-increment: manifest;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.manifest__item:last-child { border-bottom: none; }

.manifest__item::before {
  content: counter(manifest, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--coral);
  line-height: 1;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
}

.manifest__item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
  grid-column: 2;
  grid-row: 1;
}
.manifest__item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  grid-column: 2;
  grid-row: 2;
}

/* ── GALLERY: fan layout ── */
.gallery {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  text-align: center;
  overflow: hidden;
}

.gallery__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.gallery__fan {
  position: relative;
  height: clamp(320px, 55vw, 520px);
  max-width: 700px;
  margin: 0 auto;
}

.gallery__shot {
  position: absolute;
  width: clamp(140px, 32vw, 220px);
  transition: transform 0.3s;
}
.gallery__shot img {
  width: 100%;
  aspect-ratio: 384 / 688;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(26,26,46,0.2);
  border: 3px solid var(--white);
}
.gallery__shot figcaption {
  font-size: 0.6875rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.35;
  max-width: 200px;
  margin-inline: auto;
}

.gallery__shot--l {
  left: 5%;
  bottom: 5%;
  transform: rotate(-8deg);
  z-index: 1;
}
.gallery__shot--c {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.gallery__shot--r {
  right: 5%;
  bottom: 5%;
  transform: rotate(8deg);
  z-index: 2;
}

.gallery__shot:hover { transform: rotate(0deg) scale(1.04); z-index: 5; }
.gallery__shot--c:hover { transform: translateX(-50%) scale(1.04); }

/* ── HOT APPS leaderboard ── */
.hotapps {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.hotapps__head {
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.hotapps__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.hotapps__head p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.hotapps__board {
  list-style: none;
  counter-reset: hotapps;
  max-width: 820px;
}

.hotapps__row {
  border-bottom: 1px solid var(--cream-dark);
}
.hotapps__row:last-child { border-bottom: none; }

.hotapps__row a {
  display: grid;
  grid-template-columns: 2rem 56px 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  transition: background 0.15s;
}
.hotapps__row a:hover {
  background: var(--cream);
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 8px;
}

.hotapps__rank {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal);
  opacity: 0.65;
  line-height: 1;
}

.hotapps__icon {
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,26,46,0.1);
}

.hotapps__info {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}
.hotapps__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  word-break: break-word;
}
.hotapps__title {
  display: block;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.35;
  margin-top: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotapps__meta {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.hotapps__meta span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.hotapps__score {
  grid-column: 4;
  grid-row: 1 / 3;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--coral-dark);
  white-space: nowrap;
}

.hotapps__more {
  margin-top: 1.25rem;
  text-align: right;
}
.hotapps__more a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hotapps__more a:hover { color: var(--teal-dark); }

@media (min-width: 640px) {
  .hotapps__row a {
    grid-template-columns: 2.5rem 56px 1fr auto auto;
    grid-template-rows: 1fr;
    gap: 0 1rem;
  }
  .hotapps__rank,
  .hotapps__icon,
  .hotapps__score {
    grid-row: 1;
  }
  .hotapps__info { grid-row: 1; }
  .hotapps__meta {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
    justify-content: flex-end;
  }
  .hotapps__score { grid-column: 5; }
  .hotapps__title { white-space: normal; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
}

@media (max-width: 639px) {
  .hotapps__score {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    margin-top: 0.15rem;
  }
  .hotapps__meta { grid-row: 3; grid-column: 2 / 4; }
  .hotapps__row a {
    grid-template-columns: 2rem 56px 1fr;
    grid-template-rows: auto auto auto;
  }
}

/* ── VOICES: alternating quotes ── */
.voices {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream-dark);
}

.voices__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}

.voices__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.voices__q {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  margin: 0;
}
.voices__q::before {
  content: '\201C';
  position: absolute;
  left: 0.65rem;
  top: 0.5rem;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--coral);
  line-height: 1;
  opacity: 0.5;
}

.voices__q--a { margin-right: 1.5rem; border-left: 4px solid var(--teal); }
.voices__q--b { margin-left: 1.5rem; border-left: 4px solid var(--coral); }

.voices__q h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.voices__q p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}

.voices__q .review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.voices__q mark.id-tp,
.voices__q mark[class*="id-tp"] {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.voices__q mark.id-tc,
.voices__q mark[class*="id-tc"] {
  background: #fff0f0;
  color: var(--coral-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.voices__q footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ── HELP: definition list ── */
.help {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  max-width: 720px;
}

.help__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.help__dl div {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.help__dl div:last-child { border-bottom: none; }

.help__dl dt {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.help__dl dd {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── RELEASE: tabs ── */
.release {
  padding: 4rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
  max-width: 720px;
}

.release__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.release__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--cream-dark);
}
.release__tabs button {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 0.5rem;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  text-align: center;
}
.release__tabs button[aria-selected="true"] {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.release__tabs button:hover { color: var(--ink); }

.release__panel { margin-bottom: 1.5rem; }

.release__info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  list-style: none;
}
.release__info li {
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.release__info strong { color: var(--ink); }

.release__quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-mid);
  padding-left: 1rem;
  border-left: 3px solid var(--cream-dark);
  margin-bottom: 1.25rem;
}
.release__quote cite { font-style: normal; font-weight: 600; color: var(--ink-soft); }

.release__log {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.release__log h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.release__log p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  margin-bottom: 0.65rem;
}
.release__log ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.release__log li {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.release__note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.release__archive {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.release__archive summary {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
}
.release__archive summary::-webkit-details-marker { display: none; }
.release__archive summary::before { content: '+ '; color: var(--teal); font-weight: 700; }
.release__archive[open] summary::before { content: '− '; }

.release__archive ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.release__archive a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ── */
.foot {
  padding: 2.5rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  border-top: 1px solid var(--cream-dark);
  text-align: center;
}
.foot img { margin: 0 auto 1rem; opacity: 0.7; }
.foot__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.foot__links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.foot__links a:hover { color: var(--teal); }
.foot p { font-size: 0.75rem; color: var(--ink-soft); }

/* ══════════════════════════════════════
   INSTAL PAGE
   ══════════════════════════════════════ */

.ipage-head {
  padding: 2rem 1.25rem 2.5rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--ink);
  color: var(--white);
}

.ipage-crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.45);
}
.ipage-crumb a { color: var(--teal-light); }
.ipage-crumb a:hover { color: var(--white); }
.ipage-crumb span:last-child { color: rgba(255,255,255,0.65); }

.ipage-head h1 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 640px;
  word-break: break-word;
}

.ipage-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.ipage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.ipage-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

.instal-sec-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}
.instal-sec-desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 560px;
  line-height: 1.6;
}

.instal-steps {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
}

.instal-timeline {
  max-width: 720px;
  position: relative;
  padding-left: 0.5rem;
}
.instal-timeline::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--cream-dark);
}

.instal-timeline .step-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.instal-timeline .step-item:last-child { padding-bottom: 0; }

.instal-timeline .step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.instal-timeline .step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.instal-timeline .step-content p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.instal-packs {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
}
.instal-packs__grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.instal-pack {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
}
.instal-pack header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--cream-dark);
}
.instal-pack--arm header { background: rgba(13,148,136,0.08); }
.instal-pack--uni header { background: rgba(255,107,107,0.08); }
.instal-pack header h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}
.instal-pack header span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.instal-pack--uni header span { color: var(--coral-dark); }

.instal-pack__list {
  list-style: none;
  padding: 0.85rem 1.15rem 1rem;
}
.instal-pack__list li {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.55;
  padding: 0.45rem 0 0.45rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
}
.instal-pack__list li:last-child { border-bottom: none; }
.instal-pack__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.instal-pack--uni .instal-pack__list li::before { background: var(--coral); }

.instal-hash {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}
.instal-hash__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  max-width: 720px;
}
.instal-hash__box code {
  flex: 1 1 200px;
  font-size: 0.625rem;
  font-family: 'Courier New', monospace;
  word-break: break-all;
  line-height: 1.5;
  color: var(--ink-mid);
}
.btn-hash {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}
.btn-hash:hover { background: var(--teal-light); }

.instal-after {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream-dark);
}
.instal-after__grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}
.instal-after__grid .after-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid var(--teal);
}
.instal-after__grid .after-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.instal-after__grid .after-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.instal-notes {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
}
.instal-notes__list {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.instal-note {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  border-left: 4px solid var(--coral);
}
.instal-note p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.65rem;
}
.instal-note footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.instal-cta {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.instal-cta img {
  margin: 0 auto 1rem;
  border-radius: 14px;
}
.instal-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.instal-cta > p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}
.instal-cta__links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}
.instal-cta__links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Static guide block (not from instal.json) */
.instal-guide {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.instal-guide__sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.instal-req { margin-bottom: 2rem; }
.instal-req__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  max-width: 720px;
}
.instal-req__grid li {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}
.instal-req__grid strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.instal-req__grid span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.instal-source { margin-bottom: 2rem; max-width: 720px; }
.instal-source__lead {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.instal-source__item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.instal-source__item summary {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-dark);
  padding: 0.75rem 1rem;
  cursor: pointer;
  list-style: none;
}
.instal-source__item summary::-webkit-details-marker { display: none; }
.instal-source__item summary::before {
  content: '+ ';
  color: var(--teal);
  font-weight: 700;
}
.instal-source__item[open] summary::before { content: '− '; }
.instal-source__item p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  padding: 0 1rem 0.85rem;
  border-top: 1px solid var(--cream-dark);
}

@media (min-width: 640px) {
  .instal-req__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════
   PEMBARUAN PAGE
   ══════════════════════════════════════ */

.pem-meta {
  font-size: 0.8125rem;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}

.pem-brief {
  padding: 2.5rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.pem-brief__prose {
  display: grid;
  gap: 1.5rem;
  max-width: 820px;
}
.pem-brief__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-mid);
}
.pem-brief__lead p { margin-bottom: 0.75rem; }
.pem-brief__lead p:last-child { margin-bottom: 0; }
.pem-brief__aside {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--teal-dark);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 4px solid var(--coral);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}
.pem-brief__aside p { margin: 0; }

.pem-log {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
}

.pem-log__stream {
  max-width: 780px;
  position: relative;
}
.pem-log__stream::before {
  content: '';
  position: absolute;
  left: 3.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--cream-dark);
}

.pem-entry {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.pem-entry:last-child { margin-bottom: 0; }

.pem-entry__marker {
  text-align: center;
  padding-top: 0.35rem;
  position: relative;
  z-index: 1;
}
.pem-entry__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  margin: 0 auto 0.5rem;
}
.pem-entry--hot .pem-entry__dot {
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-light);
}
.pem-entry--lite .pem-entry__dot {
  border-color: var(--ink-soft);
  width: 10px;
  height: 10px;
}
.pem-entry__ver {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.2;
}
.pem-entry--hot .pem-entry__ver { color: var(--teal-dark); }

.pem-entry__card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 1.25rem;
}
.pem-entry--hot .pem-entry__card {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(13,148,136,0.1);
}

.pem-entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.pem-entry__badge {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--teal);
  color: var(--white);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.pem-entry__badge--muted {
  background: var(--cream-dark);
  color: var(--ink-soft);
}
.pem-entry__size {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: auto;
}

.pem-entry__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.pem-entry__body p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.pem-entry__body ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.pem-entry__body li {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.pem-entry__dl {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
}

.pem-tips {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}
.pem-tips__grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}
.pem-tips__grid .tip-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid var(--coral);
}
.pem-tips__grid .tip-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.pem-tips__grid .tip-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* Static guide block (not from pembaruan.json) */
.pem-guide {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.pem-guide__block { margin-bottom: 2rem; max-width: 780px; }
.pem-guide__block:last-of-type { margin-bottom: 1.5rem; }

.pem-guide__dl div {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.pem-guide__dl div:last-child { border-bottom: none; }
.pem-guide__dl dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.pem-guide__dl dd {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

.pem-guide__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.pem-guide__grid li {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}
.pem-guide__grid strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.pem-guide__grid span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.pem-guide__steps {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 720px;
}
.pem-guide__steps li {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.55rem;
}
.pem-guide__steps li:last-child { margin-bottom: 0; }
.pem-guide__steps a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .pem-tips__grid { grid-template-columns: 1fr 1fr; }
  .pem-guide__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════ */

.ipage-head--faq {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-meta {
  font-size: 0.8125rem;
  color: var(--teal-light);
  margin-top: -0.5rem;
}

.faq-body {
  padding: 2rem 1.25rem 3rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
}

.faq-search {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
}

.faq-search__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.55rem;
}

.faq-search__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-search__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 125, 125, 0.12);
}

.faq-search__input::placeholder {
  color: var(--ink-soft);
}

.faq-search__status {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  color: var(--ink-mid);
}

.faq-seo {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
}

.faq-seo__title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.faq-seo__lead {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.faq-seo__facts {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.faq-seo__facts div {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
}

.faq-seo__facts dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.2rem;
}

.faq-seo__facts dd {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin: 0;
}

.faq-seo__facts a,
.faq-seo__note a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-seo__note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.faq-group {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  scroll-margin-top: 1rem;
}
.faq-group:last-child { margin-bottom: 0; }

.faq-group[hidden],
.faq-details[hidden] {
  display: none !important;
}

.faq-group__title {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.faq-group__idx {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral);
  flex-shrink: 0;
}

.faq-group__desc {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.faq-details {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-details[open] {
  border-left: 3px solid var(--teal);
  background: var(--white);
}

.faq-details summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.45;
}

.faq-details summary::-webkit-details-marker { display: none; }

.faq-details summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.faq-details[open] summary::after { content: "−"; }

.faq-answer {
  padding: 0 1.1rem 1rem;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.faq-answer p { margin-bottom: 0.65rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-guide {
  padding: 3rem 1.25rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.faq-guide__links {
  list-style: none;
  max-width: 720px;
  margin: 0;
}

.faq-guide__links li {
  margin-bottom: 0.5rem;
}

.faq-guide__links li:last-child { margin-bottom: 0; }

.faq-guide__links a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  line-height: 1.45;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.faq-guide__links a:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(26, 46, 64, 0.06);
}

@media (min-width: 640px) {
  .faq-seo__facts { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   LEGAL — Kebijakan Privasi / Syarat
   ══════════════════════════════════════ */

.ipage-head--legal {
  background: var(--ink);
  color: var(--white);
  border-bottom: none;
}

.ipage-head--legal .ipage-crumb a,
.ipage-head--legal .ipage-crumb span {
  color: rgba(255, 255, 255, 0.55);
}

.ipage-head--legal .ipage-crumb a:hover { color: var(--white); }

.ipage-head--legal h1 {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
}

.ipage-head--legal .ipage-lead {
  color: rgba(255, 255, 255, 0.72);
}

.legal-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.65rem;
}

.legal-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}

.legal-page {
  padding: 2.5rem 1.25rem 3rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
}

.legal-wrap {
  display: grid;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.legal-aside {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
}

.legal-aside__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.65rem;
}

.legal-aside__list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.legal-aside__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.legal-aside__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.legal-aside__site {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
}

.legal-aside__site strong { color: var(--ink); }

.legal-prose {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  counter-reset: legal-ch;
}

.legal-prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
  line-height: 1.25;
}

.legal-prose h2:not(:first-child) {
  margin-top: 2rem;
}

.legal-prose h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 1.5rem 0 0.55rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--coral);
  counter-increment: legal-ch;
  line-height: 1.4;
}

.legal-prose h3::before {
  content: counter(legal-ch, decimal-leading-zero) " · ";
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--coral);
}

.legal-prose p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin: 0 0 0.85rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-prose li {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.legal-prose a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

.legal-related a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .legal-wrap {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
  .legal-aside {
    position: sticky;
    top: 1.25rem;
  }
  .legal-prose {
    padding: 2rem 2.25rem;
  }
}

/* ══════════════════════════════════════
   TENTANG KAMI PAGE
   ══════════════════════════════════════ */

.tentang-hero {
  position: relative;
  padding: 3rem 1.25rem 3.5rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.tentang-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tentang-hero__bg img {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: min(55vw, 340px);
  height: auto;
  opacity: 0.12;
  filter: blur(2px);
}

.tentang-hero__body {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.tentang-hero .ipage-crumb a,
.tentang-hero .ipage-crumb span {
  color: rgba(255, 255, 255, 0.5);
}

.tentang-hero .ipage-crumb a:hover { color: var(--white); }

.tentang-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.tentang-hero__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}

.tentang-hero__meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.tentang-body {
  padding: 2.5rem 1.25rem 3rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--cream);
}

.tentang-panel {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
}

.tentang-panel--lead {
  border-left: 4px solid var(--coral);
}

.tentang-panel--wide {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.tentang-panel--wide .tentang-panel__mark { color: var(--coral); }
.tentang-panel--wide .tentang-panel__content h2 { color: var(--white); }
.tentang-panel--wide .tentang-panel__content p { color: rgba(255, 255, 255, 0.78); }

.tentang-panel--close {
  border-bottom: 3px solid var(--teal);
}

.tentang-panel__mark {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.tentang-panel__content h2 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.tentang-panel__content p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin: 0;
}

.tentang-duo {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.tentang-panel--duo {
  margin-bottom: 0;
}

.tentang-values {
  max-width: 820px;
  margin: 2rem auto 2rem;
}

.tentang-values__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  text-align: center;
}

.tentang-values__grid {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.tentang-values__grid li {
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
}

.tentang-values__grid strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.tentang-values__grid span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.tentang-org {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
}

.tentang-org__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.tentang-org__table {
  display: grid;
  gap: 0;
  margin: 0;
}

.tentang-org__table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.875rem;
}

.tentang-org__table div:last-child { border-bottom: none; }

.tentang-org__row--block {
  grid-template-columns: 1fr;
  gap: 0.25rem;
}

.tentang-org__row--block dd {
  line-height: 1.65;
}

.tentang-org__table dt {
  font-weight: 600;
  color: var(--ink-soft);
}

.tentang-org__table dd {
  margin: 0;
  color: var(--ink-mid);
  line-height: 1.5;
}

.tentang-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.tentang-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .tentang-duo { grid-template-columns: 1fr 1fr; }
  .tentang-values__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .tentang-hero {
    padding: 4rem 4rem 4.5rem;
  }
  .tentang-panel {
    grid-template-columns: 3rem 1fr;
    align-items: start;
    padding: 1.5rem 1.75rem;
  }
  .tentang-panel--duo {
    grid-template-columns: 1fr;
  }
  .tentang-panel--duo .tentang-panel__mark {
    margin-bottom: 0.25rem;
  }
}

/* ══════════════════════════════════════
   APLIKASI / KATALOG PAGE
   ══════════════════════════════════════ */

.ipage-head--app {
  border-bottom: 1px solid var(--cream-dark);
}

.app-meta {
  font-size: 0.8125rem;
  color: var(--teal-light);
  margin-top: -0.5rem;
}

.app-body {
  padding: 2rem 1.25rem 3rem;
  padding-right: calc(1.25rem + var(--rail-w));
  background: var(--white);
}

.app-intro {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
}

.app-intro__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.45rem;
}

.app-intro__lead {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.app-intro__lead strong { color: var(--ink); font-weight: 600; }

.app-intro__flow {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.app-intro__flow li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}

.app-intro__step {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.app-intro__flow strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.app-intro__flow li div span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.app-intro__foot {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.app-intro__foot a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .app-intro__flow {
    grid-template-columns: 1fr 1fr;
  }
}

.app-search {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
}

.app-search__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.55rem;
}

.app-search__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.app-search__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 125, 125, 0.12);
}

.app-search__status {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  color: var(--ink-mid);
}

.app-list {
  max-width: 720px;
  margin: 0 auto;
}

.app-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  margin-bottom: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.app-row:not([hidden]):hover {
  border-color: var(--teal);
  box-shadow: 0 2px 10px rgba(26, 46, 64, 0.06);
}

.app-row[hidden],
.app-row--off { display: none !important; }

.app-row-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.app-row-body { min-width: 0; }

.app-row-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.app-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.app-row-meta span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

.app-row-desc {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-row-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.app-row-rating {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}

.app-row-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--teal);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.app-row-link:hover {
  background: var(--teal);
  color: var(--white);
}

.app-page-info {
  max-width: 720px;
  margin: 1.25rem auto 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
}

.app-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 0.25rem;
}

.app-pager a,
.app-pager__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.app-pager a {
  color: var(--teal-dark);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.app-pager a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.app-pager__current {
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
}

.app-pager__prev,
.app-pager__next {
  padding: 0 0.85rem !important;
}

@media (max-width: 639px) {
  .app-row {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
  }
  .app-row-icon {
    width: 52px;
    height: 52px;
    grid-row: 1 / 3;
  }
  .app-row-action {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

/* ── DESKTOP: dock layout ── */
@media (min-width: 900px) {
  .dock { display: flex; }
  .mob-top, .mob-drawer, .mob-rail { display: none; }

  .page {
    margin-left: var(--dock-w);
    width: calc(100% - var(--dock-w));
    max-width: calc(100% - var(--dock-w));
    padding-right: 0;
  }

  .intro {
    min-height: 92vh;
    padding: 4rem 4rem 0;
  }

  .spec,
  .story,
  .manifest,
  .hotapps,
  .gallery,
  .voices,
  .help,
  .release,
  .foot,
  .ipage-head,
  .instal-steps,
  .instal-guide,
  .instal-packs,
  .instal-hash,
  .instal-after,
  .instal-notes,
  .instal-cta,
  .pem-brief,
  .pem-log,
  .pem-tips,
  .pem-guide,
  .faq-body,
  .faq-guide,
  .legal-page,
  .tentang-body,
  .tentang-hero,
  .app-body {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .instal-packs__grid { grid-template-columns: 1fr 1fr; max-width: none; }
  .instal-after__grid { grid-template-columns: repeat(3, 1fr); }
  .instal-notes__list { grid-template-columns: 1fr; gap: 1.25rem; }

  .spec__grid { grid-template-columns: repeat(6, 1fr); }

  .story__prose {
    grid-template-columns: 1fr 280px;
    grid-template-rows: auto auto;
  }
  .story__lead { grid-column: 1; grid-row: 1; }
  .story__pull { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .story__tail { grid-column: 1; grid-row: 2; }

  .pem-brief__prose {
    grid-template-columns: 1fr min(280px, 35%);
    align-items: start;
  }
  .pem-brief__aside { align-self: center; }

  .gallery__fan { height: 520px; max-width: 800px; }
}

@media (max-width: 639px) {
  .spec__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__actions { flex-direction: column; }
  .intro__actions .cta { width: 100%; }
  .voices__q--a { margin-right: 0; }
  .voices__q--b { margin-left: 0; }
}

@media (max-width: 899px) {
  body { padding-right: 0; }
}
