﻿/* Merah–Putih strip layout — no cards, no heavy effects */
:root {
  --red: #e10600;
  --red-deep: #b80000;
  --ink: #111111;
  --muted: #555555;
  --line: #111111;
  --white: #ffffff;
  --rail-w: 210px;
  --mobile-top-h: 56px;
  --max: 1180px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--mobile-top-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-deep);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.7rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.wrap {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* —— Mobile top strip (CTA stays visible while scrolling) —— */
.mobile-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 920;
  height: var(--mobile-top-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.75rem;
  background: var(--white);
  border-bottom: 3px solid var(--red);
}

.mobile-top__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.brand-link img {
  height: 32px;
  width: auto;
  max-width: min(42vw, 150px);
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  border: 2px solid var(--red);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sticky {
  white-space: nowrap;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.rail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 930;
  background: rgba(0, 0, 0, 0.35);
}

.rail-backdrop[hidden] {
  display: none !important;
}

/* —— Fixed left rail —— */
.site-rail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 940;
  width: min(82vw, 260px);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  border-right: 3px solid var(--red);
  padding: 1.1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(-105%);
  transition: transform 0.22s ease;
}

.site-rail.is-open {
  transform: translateX(0);
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
}

.rail-nav a {
  display: block;
  padding: 0.7rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.rail-nav a[aria-current="page"],
.rail-nav a:hover {
  color: var(--red);
}

.rail-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* —— Hero: full-bleed red slab —— */
.hero {
  background: var(--red);
  color: var(--white);
  padding: 2.4rem 0 2.6rem;
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: end;
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.6vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero__lead {
  margin: 0 0 1.25rem;
  max-width: 36ch;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero .btn-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.hero .btn-red:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.hero__visual {
  justify-self: start;
  width: min(100%, 220px);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  padding: 1rem;
}

/* —— Specs as continuous type strip —— */
.specs {
  border-bottom: 3px solid var(--ink);
  background: var(--white);
}

.specs__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specs__row li {
  flex: 1 1 46%;
  padding: 0.85rem 0.9rem 0.85rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.specs__row li:nth-child(odd) {
  padding-right: 1rem;
  border-right: 1px solid #e5e5e5;
}

.specs__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.specs__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* —— Sections —— */
.section {
  padding: 2.6rem 0;
  border-bottom: 3px solid var(--ink);
}

.section--red {
  background: var(--red);
  color: var(--white);
  border-bottom-color: var(--ink);
}

.section--red a {
  color: var(--white);
}

.section--red .section__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.kicker__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.03em;
}

.section--red .kicker__num {
  color: var(--white);
}

.section__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.section__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 52ch;
}

.section--red .section__intro {
  color: rgba(255, 255, 255, 0.9);
}

/* About: 3 staggered columns of type */
.about-flow {
  display: grid;
  gap: 1.35rem;
}

.about-flow p {
  margin: 0;
  padding-top: 0.7rem;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1.02rem;
}

.about-flow p::before {
  content: attr(data-n);
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  margin-bottom: 0.35rem;
  letter-spacing: 0.06em;
}

.note-line {
  margin: 1.4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 0.85rem;
  border-left: 3px solid var(--red);
}

.section--red .note-line {
  color: rgba(255, 255, 255, 0.9);
  border-left-color: var(--white);
}

/* Screens: red-stage mosaic (1 large + 2 stacked) */
.screen-mosaic {
  display: grid;
  gap: 1.25rem 1rem;
  align-items: start;
}

.screen-mosaic figure {
  margin: 0;
}

.screen-mosaic img {
  width: 100%;
  aspect-ratio: 384 / 688;
  object-fit: cover;
  background: #f5f5f5;
}

.screen-mosaic figcaption {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.screen-mosaic figcaption span {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

.screen-mosaic__main {
  max-width: 280px;
  margin-inline: auto;
}

.screen-mosaic__side {
  max-width: 220px;
  margin-inline: auto;
}

/* Features: dense rule list */
.feat-rail {
  display: grid;
  gap: 0;
  counter-reset: feat;
}

.feat-rail article {
  padding: 1rem 0 1.05rem;
  border-top: 1px solid #ddd;
  counter-increment: feat;
}

.feat-rail article:last-child {
  border-bottom: 1px solid #ddd;
}

.feat-rail article::before {
  content: counter(feat, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.feat-rail h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.feat-rail p {
  margin: 0;
  color: var(--muted);
}

/* Audience: zigzag open text */
.audience-zig {
  display: grid;
  gap: 1.6rem;
}

.audience-zig article {
  padding: 0;
  border: 0;
  background: transparent;
}

.audience-zig article:nth-child(even) {
  text-align: right;
}

.audience-zig article:nth-child(even) h3,
.audience-zig article:nth-child(even) p {
  margin-left: auto;
}

.audience-zig h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  max-width: 28ch;
  border-bottom: 3px solid var(--red);
  display: inline-block;
  padding-bottom: 0.2rem;
}

.audience-zig p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  max-width: 46ch;
}

.audience-zig p:last-child {
  margin-bottom: 0;
}

/* Twin open lists */
.split-open {
  display: grid;
  gap: 2rem;
}

.split-open h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.split-open ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-open li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.15rem;
  border-top: 1px solid #e5e5e5;
  color: var(--muted);
}

.split-open li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.split-open li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

/* Experience open prose */
.experience-flow p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.experience-flow p:last-child {
  margin-bottom: 0;
}

.section--red .experience-flow p {
  color: var(--white);
}

/* FAQ: hairline only */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 0.95rem 1.6rem 0.95rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.9rem;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 70ch;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #ddd;
  padding: 2.4rem 0 5.5rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ff8f8f;
}

.footer__brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer__desc {
  margin: 0 0 1.2rem;
  max-width: 48ch;
  color: #aaa;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer__meta {
  margin: 0;
  font-size: 0.84rem;
  color: #888;
}

@media (min-width: 860px) {
  body {
    padding-top: 0;
    padding-left: var(--rail-w);
  }

  .mobile-top,
  .rail-backdrop {
    display: none !important;
  }

  .site-rail {
    width: var(--rail-w);
    transform: none;
    padding: 1.4rem 1.05rem 1.4rem;
  }

  .brand-link img {
    height: 36px;
    max-width: 100%;
  }

  .rail-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 3.4rem 0 3.6rem;
  }

  .hero__grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }

  .hero__visual {
    justify-self: end;
    width: min(100%, 280px);
  }

  .specs__row li {
    flex: 1 1 14%;
    border-right: 1px solid #e5e5e5;
    border-bottom: 0;
    padding: 1rem 0.85rem 1rem 0;
  }

  .specs__row li:nth-child(odd) {
    border-right: 1px solid #e5e5e5;
  }

  .specs__row li:last-child {
    border-right: 0;
  }

  .about-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
  }

  .about-flow p:nth-child(2) {
    margin-top: 2.2rem;
  }

  .about-flow p:nth-child(3) {
    margin-top: 4.4rem;
  }

  .screen-mosaic {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 1.4rem 1.6rem;
    padding: 1.5rem 1.25rem 1.75rem;
    background:
      linear-gradient(var(--red) 0 12px, transparent 12px),
      linear-gradient(transparent calc(100% - 12px), var(--red) calc(100% - 12px)),
      #fff;
    border-left: 12px solid var(--red);
    border-right: 12px solid var(--red);
  }

  .screen-mosaic__main {
    grid-column: 1;
    grid-row: 1 / span 2;
    max-width: none;
    margin: 0;
    align-self: center;
  }

  .screen-mosaic__side {
    max-width: none;
    margin: 0;
    width: min(100%, 260px);
    justify-self: end;
  }

  .screen-mosaic__side:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .screen-mosaic__side:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .feat-rail {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .feat-rail article:nth-child(odd) {
    border-right: 1px solid #ddd;
    padding-right: 1.4rem;
  }

  .feat-rail article:nth-child(even) {
    padding-left: 0.4rem;
  }

  .audience-zig {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .split-open {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 859px) {
  .btn-sticky {
    font-size: 0.9rem;
    min-height: 40px;
    padding-inline: 0.75rem;
  }

  .screen-mosaic__main,
  .screen-mosaic__side {
    max-width: min(70vw, 260px);
  }
}

/* —— Download page extras —— */
.crumb {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.crumb a {
  color: #fff;
  text-decoration: none;
}

.crumb a:hover {
  text-decoration: underline;
}

.prose-flow > p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.prose-flow > p:last-child {
  margin-bottom: 0;
}

.dl-aside__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.dl-aside__line {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  color: var(--ink);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #e5e5e5;
}

.dl-aside__line:last-of-type {
  border-bottom: 0;
}

.dl-cta-band {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 3px solid var(--red);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.dl-cta-band p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  max-width: 34ch;
}

.step-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
}

.step-strip__item {
  position: relative;
  padding-left: 3.2rem;
  counter-increment: step;
}

.step-strip__item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.step-strip__item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.step-strip__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.detail-pairs {
  display: grid;
  gap: 1.6rem;
}

.detail-pairs__item {
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
}

.detail-pairs__tag {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.detail-pairs__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.detail-pairs__item p {
  margin: 0;
  color: var(--muted);
}

.tip-rail {
  display: grid;
  gap: 0;
}

.tip-rail article {
  padding: 1.05rem 0;
  border-top: 1px solid #ddd;
}

.tip-rail article:last-child {
  border-bottom: 1px solid #ddd;
}

.tip-rail h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.tip-rail p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 860px) {
  .step-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .step-strip__item {
    padding-left: 0;
    padding-top: 3.2rem;
    border-top: 3px solid rgba(255, 255, 255, 0.35);
  }

  .step-strip__item::before {
    top: -1.35rem;
    left: 0;
  }

  .detail-pairs {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.2rem;
    row-gap: 1.8rem;
  }

  .detail-pairs__item:nth-child(odd) {
    padding-right: 0.6rem;
  }

  .tip-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.75rem;
  }

  .tip-rail article {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    border-left: 3px solid var(--red);
    padding-left: 0.9rem;
  }
}

/* —— Login page extras —— */
.prep-stack {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.prep-stack__item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.prep-stack__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

.prep-stack__item span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.prose-flow--on-red > p {
  color: rgba(255, 255, 255, 0.95);
}

.dl-cta-band--on-red {
  border-top-color: rgba(255, 255, 255, 0.45);
}

.dl-cta-band--on-red p {
  color: #fff;
}

.dl-cta-band--on-red .btn-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.dl-cta-band--on-red .btn-red:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.habit-rail {
  display: grid;
  gap: 0;
}

.habit-rail article {
  padding: 1.05rem 0;
  border-top: 1px solid #ddd;
}

.habit-rail article:last-child {
  border-bottom: 1px solid #ddd;
}

.habit-rail h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.habit-rail p {
  margin: 0;
  color: var(--muted);
}

.when-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.when-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.2rem;
  border-top: 1px solid #e5e5e5;
  color: var(--muted);
}

.when-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.when-list li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 860px) {
  .prep-stack {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .prep-stack__item:nth-child(odd) {
    padding-right: 0.5rem;
  }

  .habit-rail {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.2rem;
  }

  .habit-rail article:nth-child(odd) {
    border-right: 1px solid #eee;
    padding-right: 1.2rem;
  }
}

/* ========== DOWNLOAD: dock + timeline ========== */
.page-download .dock-hero {
  display: grid;
  gap: 0;
  border-bottom: 3px solid var(--ink);
}

.dock-hero__copy {
  padding: 2.2rem 1.25rem 2.4rem;
  background: var(--white);
}

.dock-hero__crumb {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.dock-hero__crumb a {
  color: var(--ink);
  text-decoration: none;
}

.dock-hero__crumb a:hover {
  color: var(--red);
}

.dock-hero__copy h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.dock-hero__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
}

.dock-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.apk-ticket {
  background: var(--red);
  color: var(--white);
  padding: 1.5rem 1.25rem 1.6rem;
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.apk-ticket img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--white);
  padding: 0.4rem;
}

.apk-ticket__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.apk-ticket__meta {
  margin: 0;
  width: 100%;
  display: grid;
  gap: 0.35rem;
}

.apk-ticket__meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.92rem;
}

.apk-ticket__meta dt {
  margin: 0;
  opacity: 0.85;
}

.apk-ticket__meta dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.apk-ticket__cta {
  width: 100%;
  margin-top: 0.35rem;
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.apk-ticket__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.track-wrap {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.dl-track {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 0.25rem;
}

.dl-track::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  background: var(--red);
}

.track-node {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1.35rem 0 1.6rem;
}

.track-node__mark {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 3px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.track-node__body h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.track-node__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.track-node__hint {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.1rem;
  border-top: 1px solid #e8e8e8;
  color: var(--muted);
}

.track-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  background: var(--red);
}

.track-list li:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.track-duo {
  display: grid;
  gap: 1.5rem;
}

.track-inline-cta {
  margin: 1.2rem 0 0;
}

.track-node--focus .track-node__body {
  background: #fff5f5;
  padding: 1rem 1rem 1.15rem;
  border-left: 4px solid var(--red);
}

.install-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  counter-reset: inst;
}

.install-flow > li {
  counter-increment: inst;
  padding: 0.85rem 0 0.85rem 2.8rem;
  position: relative;
  border-top: 1px solid #f0c8c8;
}

.install-flow > li::before {
  content: counter(inst);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.install-flow h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.install-flow p {
  margin: 0;
  color: var(--muted);
}

.rinci-stack {
  display: grid;
  gap: 1.15rem;
}

.rinci-stack article {
  padding-left: 2.6rem;
  position: relative;
}

.rinci-stack article::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.rinci-stack h3 {
  margin: 0 0 0.35rem;
}

.rinci-stack p {
  margin: 0;
  color: var(--muted);
}

.tip-columns {
  display: grid;
  gap: 1rem;
}

.tip-columns article {
  padding-top: 0.85rem;
  border-top: 2px solid var(--ink);
}

.tip-columns h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.tip-columns p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 860px) {
  .page-download .dock-hero {
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 420px;
  }

  .dock-hero__copy {
    padding: 3rem 2rem 3.2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .apk-ticket {
    padding: 2rem 1.6rem;
  }

  .track-duo {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .install-flow {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }

  .rinci-stack {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 2rem;
  }

  .tip-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}

/* ========== LOGIN: gate / corridor ========== */
.gate-mast {
  border-bottom: 3px solid var(--red);
  background: var(--white);
  padding: 2.4rem 0 2.6rem;
}

.gate-mast__inner {
  width: min(100% - 1.5rem, 720px);
  margin-inline: auto;
  text-align: center;
}

.gate-mast__crumb {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.gate-mast__crumb a {
  color: var(--ink);
  text-decoration: none;
}

.gate-mast__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.25rem 0.65rem;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gate-mast h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gate-mast__lead {
  margin: 0 auto 1.25rem;
  max-width: 48ch;
  color: var(--muted);
}

.gate-mast__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.gate-mast__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.gate-check {
  background: var(--red);
  color: var(--white);
  padding: 2.2rem 0 2.4rem;
}

.gate-check h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gate-check__intro {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.gate-check__row {
  display: grid;
  gap: 0.85rem;
}

.gate-check__cell {
  padding: 0.85rem 0 0.85rem 2.4rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.gate-check__cell::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.gate-check__cell strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.gate-check__cell span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.gate-read {
  padding: 2.6rem 0;
  border-bottom: 3px solid var(--ink);
}

.gate-read__col {
  width: min(100% - 1.5rem, 640px);
  margin-inline: auto;
}

.gate-read h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gate-read__cta {
  margin: 1.4rem 0 0;
}

.gate-compare {
  padding: 2.4rem 0;
  border-bottom: 3px solid var(--ink);
}

.gate-compare__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.gate-compare__grid {
  display: grid;
  gap: 2rem;
}

.gate-compare__grid h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.gate-compare__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.gate-habits {
  padding: 2.2rem 0 0;
  border-bottom: 3px solid var(--ink);
}

.gate-habits h2 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.habit-banners__item {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 5rem;
  border-top: 1px solid #e5e5e5;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.habit-banners__item::before {
  content: attr(data-n);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.habit-banners__item--alt {
  background: #fff5f5;
}

.habit-banners__item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.habit-banners__item p {
  margin: 0;
  color: var(--muted);
}

.gate-faq {
  padding: 2.4rem 0 2.8rem;
}

.gate-faq__inner {
  width: min(100% - 1.5rem, 760px);
}

.gate-faq h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.faq-list--compact .faq-item summary {
  font-size: 1rem;
}

@media (min-width: 860px) {
  .gate-check__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .gate-check__cell {
    padding: 2.4rem 0.4rem 0.4rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .gate-check__cell:first-child {
    border-left: 0;
  }

  .gate-check__cell::before {
    top: 0;
    left: 0.4rem;
  }

  .gate-compare__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .habit-banners__item {
    width: min(100% - 1.5rem, var(--max));
    padding: 1.35rem 0 1.35rem 4.5rem;
  }

  .habit-banners__item::before {
    left: 0;
  }
}

/* Login flow path (HowTo visual) */
.login-path {
  padding: 2.4rem 0 2.6rem;
  border-bottom: 3px solid var(--ink);
  background: var(--white);
}

.login-path__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.login-path h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.login-path__intro {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 52ch;
}

.login-path__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: loginpath;
}

.login-path__steps > li {
  position: relative;
  padding: 1.1rem 0 1.1rem 3.2rem;
  border-top: 1px solid #e5e5e5;
  counter-increment: loginpath;
}

.login-path__steps > li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.login-path__steps > li::before {
  content: counter(loginpath);
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.login-path__steps h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.login-path__steps p {
  margin: 0;
  color: var(--muted);
}

.login-path__steps a {
  font-weight: 600;
}

@media (min-width: 860px) {
  .login-path__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 3px solid var(--red);
  }

  .login-path__steps > li {
    padding: 2.6rem 1rem 0 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 1px solid #eee;
  }

  .login-path__steps > li:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .login-path__steps > li::before {
    top: -1.15rem;
    left: 0;
  }
}

/* ========== RESMI: seal / official stamp layout ========== */
.seal-hero {
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}

.seal-hero__grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.2rem 0 1.8rem;
  align-items: center;
}

.seal-mark {
  width: min(100%, 200px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 1rem;
  text-align: center;
}

.seal-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.seal-mark span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.seal-hero__crumb {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.seal-hero__crumb a {
  color: var(--ink);
  text-decoration: none;
}

.seal-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.seal-hero__lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 48ch;
}

.seal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.seal-ribbon {
  background: var(--red);
  color: var(--white);
}

.seal-ribbon__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.seal-about {
  padding: 2.4rem 0;
  border-bottom: 3px solid var(--ink);
}

.seal-about__grid {
  display: grid;
  gap: 1.4rem;
}

.seal-about__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.seal-about__side h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.seal-about__note {
  margin: 0;
  color: var(--muted);
  padding-left: 0.75rem;
  border-left: 3px solid var(--red);
}

.seal-commit {
  background: var(--ink);
  color: #ddd;
  padding: 2.4rem 0;
}

.seal-commit__box h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.seal-commit__box p {
  margin: 0 0 0.9rem;
  color: #cfcfcf;
}

.seal-commit__box ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #ddd;
}

.seal-commit__box li {
  margin-bottom: 0.45rem;
}

.seal-help {
  padding: 2.4rem 0;
  border-bottom: 3px solid var(--ink);
}

.seal-help__head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.seal-help__head p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.seal-help__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.seal-help__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.6rem;
  border-top: 1px solid #e5e5e5;
  color: var(--muted);
  counter-increment: sealhelp;
}

.seal-help__list {
  counter-reset: sealhelp;
}

.seal-help__list li::before {
  content: counter(sealhelp, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
}

.seal-help__list li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.seal-role {
  padding: 2.6rem 0;
  border-bottom: 3px solid var(--ink);
  background: #fff8f8;
}

.seal-role__inner {
  width: min(100% - 1.5rem, 720px);
  margin-inline: auto;
}

.seal-role h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.seal-howto {
  padding: 2.4rem 0 2.8rem;
}

.seal-howto h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
}

.seal-howto__intro {
  margin: 0 0 1.3rem;
  color: var(--muted);
}

.seal-verify {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  counter-reset: sealver;
}

.seal-verify > li {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  border-top: 1px solid #e5e5e5;
  counter-increment: sealver;
}

.seal-verify > li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.seal-verify > li::before {
  content: counter(sealver);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
}

.seal-verify h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.seal-verify p {
  margin: 0;
  color: var(--muted);
}

.seal-guide {
  padding-top: 1.2rem;
  border-top: 3px solid var(--red);
  margin-bottom: 1.5rem;
}

.seal-guide__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.seal-guide__body {
  display: grid;
  gap: 1rem;
}

.seal-guide__body h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.seal-guide__body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.seal-howto__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

@media (min-width: 860px) {
  .seal-hero__grid {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    padding: 2.8rem 0 2rem;
  }

  .seal-mark {
    margin-inline: 0;
  }

  .seal-about__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }

  .seal-help__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .seal-verify {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.75rem;
  }

  .seal-guide__body {
    columns: 2;
    column-gap: 2rem;
  }

  .seal-guide__body h3 {
    break-after: avoid;
  }

  .seal-guide__body p {
    break-inside: avoid;
  }
}

/* ========== BANTUAN: help desk / ticket board ========== */
.help-desk {
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}

.help-desk__inner {
  padding: 2.2rem 0 1.4rem;
}

.help-desk__crumb {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.help-desk__crumb a {
  color: var(--ink);
  text-decoration: none;
}

.help-desk h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 20ch;
}

.help-desk__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  max-width: 54ch;
}

.help-desk__meta {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
}

.help-jump {
  background: var(--red);
}

.help-jump__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  padding: 0.55rem 0;
}

.help-jump a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.help-jump a:last-child {
  border-right: 0;
}

.help-jump a:hover {
  text-decoration: underline;
  color: var(--white);
}

.help-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.help-kicker--light {
  color: rgba(255, 255, 255, 0.85);
}

.help-howto {
  padding: 2.2rem 0 1.8rem;
  border-bottom: 3px solid var(--ink);
}

.help-howto__grid {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.help-howto h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.help-howto__note {
  margin: 0;
  color: var(--muted);
  padding-left: 0.75rem;
  border-left: 3px solid var(--red);
}

.help-board {
  padding: 2rem 0 2.4rem;
  background: #fafafa;
  border-bottom: 3px solid var(--ink);
}

.help-board__grid {
  display: grid;
  gap: 1.25rem;
}

.help-ticket {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 1.15rem 1.1rem 1.25rem;
}

.help-ticket--alt {
  border-top-color: var(--ink);
}

.help-ticket__tag {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.help-ticket--alt .help-ticket__tag {
  color: var(--ink);
}

.help-ticket__head {
  display: contents;
}

.help-ticket h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.help-ticket > p,
.help-ticket p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.help-ticket ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.help-ticket li {
  margin-bottom: 0.4rem;
}

.help-check {
  background: var(--red);
  color: var(--white);
  padding: 2.3rem 0 2.6rem;
}

.help-check__head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
}

.help-check__head p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.help-check__list {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.help-check__list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.95);
}

.help-check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
}

.help-check__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.help-check__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.help-check .btn-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.help-check .btn-red:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.help-check .btn-outline {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.help-check .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

@media (min-width: 860px) {
  .help-desk__inner {
    padding: 2.8rem 0 1.6rem;
  }

  .help-howto__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.2rem;
    align-items: start;
  }

  .help-board__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1.5rem;
  }

  .help-check__list {
    columns: 2;
    column-gap: 2rem;
  }

  .help-check__list li {
    break-inside: avoid;
  }
}

/* ========== APLIKASI: directory ledger catalog ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-hero {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 2.2rem 0 1.8rem;
}

.catalog-hero__crumb {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.catalog-hero__crumb a {
  color: var(--ink);
  text-decoration: none;
}

.catalog-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}

.catalog-hero__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  max-width: 56ch;
}

.catalog-hero__count {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.catalog-about {
  padding: 2rem 0;
  border-bottom: 3px solid var(--ink);
}

.catalog-about h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 800;
}

.catalog-board {
  padding: 2rem 0 2.8rem;
  background: #fafafa;
}

.catalog-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.catalog-toolbar h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.catalog-toolbar__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-toolbar__filters {
  display: grid;
  gap: 0.55rem;
}

.catalog-toolbar__filters input,
.catalog-toolbar__filters select {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--ink);
}

.catalog-toolbar__filters input:focus,
.catalog-toolbar__filters select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.aplikasi-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid #ddd;
}

.aplikasi-card {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.aplikasi-card[hidden] {
  display: none !important;
}

.app-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: inherit;
}

.app-row:hover .app-row__name {
  color: var(--red);
}

.app-row__icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
  background: #eee;
}

.app-row__name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.app-row__title {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.app-row__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.app-row__meta span {
  position: relative;
}

.app-row__meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.45rem;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  background: var(--red);
  border-radius: 50%;
}

.aplikasi-empty {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.aplikasi-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
}

.aplikasi-page-btn {
  min-height: 40px;
  min-width: 40px;
  padding: 0.4rem 0.7rem;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.aplikasi-page-btn.is-active,
.aplikasi-page-btn:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.aplikasi-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.aplikasi-ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 0.2rem;
  font-weight: 700;
}

@media (min-width: 860px) {
  .catalog-hero {
    padding: 2.8rem 0 2rem;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .catalog-toolbar__filters {
    grid-template-columns: 220px 180px;
    min-width: 420px;
  }

  .aplikasi-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .aplikasi-card:nth-child(odd) .app-row {
    padding-right: 0.5rem;
  }
}

/* Home daily hot recommendations */
.home-hot__grid {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
  margin-bottom: 1rem;
}

.home-hot__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
}

.home-hot__item:hover strong {
  color: var(--red);
}

.home-hot__item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: #eee;
}

.home-hot__body {
  display: grid;
  gap: 0.2rem;
}

.home-hot__body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.home-hot__body em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-hot__body small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 860px) {
  .home-hot__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}
