/* 5zk preview — putih & merah */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --ink: #161616;
  --mute: #616161;
  --line: #e8e8e8;
  --red: #d4202f;
  --red-deep: #b01522;
  --red-soft: #ffe8ea;
  --max: 1100px;
  --display: "Bricolage Grotesque", sans-serif;
  --text: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--text);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--red-deep);
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
.logo,
.nav a,
.btn,
.kicker,
.faq-btn,
.foot a {
  font-family: var(--display);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.shell {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -80px;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 0.85rem;
}

.skip:focus {
  top: 1rem;
}

/* Header */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.bar::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--red);
}

.bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.logo .logo-brand {
  width: auto;
  height: 36px;
  max-width: min(180px, 42vw);
  object-fit: contain;
  display: block;
}

@media (min-width: 800px) {
  .logo .logo-brand {
    height: 40px;
    max-width: 200px;
  }
}

.nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
}

.nav a {
  text-decoration: none;
  color: var(--mute);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 0.6rem;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--red);
}

.bar-end {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

.panel {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1rem;
}

.panel.open {
  display: flex;
}

.panel a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-deep);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--red-deep);
  border-color: #fff;
}

.btn-white:hover {
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Hero — white plane + red side */
.hero {
  display: grid;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-main {
  padding: 2.75rem 0 3rem;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 14vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--ink);
  animation: up 0.8s var(--ease) both;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  animation: up 0.9s var(--ease) 0.05s both;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34ch;
  color: var(--mute);
  font-size: 1.05rem;
  animation: up 1s var(--ease) 0.1s both;
}

.hero .actions {
  animation: up 1.05s var(--ease) 0.14s both;
}

.hero-side {
  background:
    linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 2rem 1.4rem;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  animation: fade 1s var(--ease) 0.12s both;
}

.hero-side img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.15);
}

.hero-side h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hero-side li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
}

.hero-side li span:last-child {
  font-weight: 800;
}

/* Band */
.band {
  padding: 3rem 0;
}

.band-alt {
  background: var(--bg-soft);
}

.head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.deck {
  margin: 0;
  color: var(--mute);
}

/* Specs removed — ukuran hanya di hero-side (number1/2/3 + version1) */

/* Popular apps — struktur aplikasi-card */
.aplikasi-grid {
  display: grid;
  gap: 0.85rem;
}

.aplikasi-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
}

.aplikasi-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-soft);
}

.aplikasi-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.aplikasi-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.aplikasi-cat {
  margin: 0;
  color: var(--mute);
  font-size: 0.88rem;
}

.aplikasi-stats {
  list-style: none;
  margin: 0.2rem 0 0.55rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  color: var(--mute);
  font-size: 0.82rem;
}

.aplikasi-dl {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
}

.aplikasi-dl:hover {
  color: var(--red-deep);
}

.app-more {
  margin-top: 1.25rem;
  text-align: center;
}

/* —— Halaman Aplikasi / katalog —— */
.katalog-tools {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.katalog-search input,
.katalog-filter select {
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.katalog-search input:focus,
.katalog-filter select:focus {
  outline: 2px solid color-mix(in srgb, var(--red) 35%, transparent);
  outline-offset: 1px;
  border-color: var(--red);
}

.katalog-meta {
  margin: 0;
}

.katalog-empty {
  margin: 1rem 0 0;
  color: var(--mute);
  text-align: center;
}

.aplikasi-card.is-hidden {
  display: none;
}

.katalog-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.katalog-page-btn {
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.katalog-page-btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
}

.katalog-page-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.katalog-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.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;
}

/* Hero katalog aplikasi — brand + orbit visual */
.page-hero.katalog-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: 0;
  background:
    linear-gradient(105deg, #1a0a0c 0%, #3d1218 42%, #8b1a24 78%, #d4202f 100%);
  color: #fff;
}

.page-hero.katalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
  pointer-events: none;
}

.page-hero.katalog-hero .shell {
  position: relative;
  z-index: 1;
  padding-bottom: 2.75rem;
}

.page-hero.katalog-hero .crumb {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero.katalog-hero .crumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero.katalog-hero .crumb a:hover {
  color: #fff;
}

.page-hero.katalog-hero .crumb [aria-current="page"] {
  color: #fff;
}

.katalog-hero-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.katalog-brand {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.page-hero.katalog-hero .kicker {
  color: #ffd0d4;
}

.page-hero.katalog-hero h1 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
}

.page-hero.katalog-hero .lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.page-hero.katalog-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.page-hero.katalog-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.page-hero.katalog-hero .btn-red {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.page-hero.katalog-hero .btn-red:hover {
  background: #ffe8ea;
  color: var(--red-deep);
}

.katalog-hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.katalog-stage-bg {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 180, 180, 0.2), transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.katalog-orbit {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit-logo {
  width: 42%;
  height: auto;
  border-radius: 22%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  z-index: 2;
  animation: katalog-pulse 4.5s ease-in-out infinite;
}

.orbit-app {
  position: absolute;
  border-radius: 18%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  animation: katalog-float 5s ease-in-out infinite;
}

.katalog-orbit .orbit-app:nth-child(2) { top: 2%; left: 38%; width: 15%; animation-delay: 0s; }
.katalog-orbit .orbit-app:nth-child(3) { top: 22%; right: 0; width: 14%; animation-delay: 0.4s; }
.katalog-orbit .orbit-app:nth-child(4) { bottom: 18%; right: 4%; width: 16%; animation-delay: 0.8s; }
.katalog-orbit .orbit-app:nth-child(5) { bottom: 0; left: 36%; width: 14%; animation-delay: 1.1s; }
.katalog-orbit .orbit-app:nth-child(6) { bottom: 22%; left: 0; width: 13%; animation-delay: 1.5s; }
.katalog-orbit .orbit-app:nth-child(7) { top: 20%; left: 2%; width: 15%; animation-delay: 1.9s; }

.katalog-orbit-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes katalog-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes katalog-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-logo,
  .orbit-app {
    animation: none;
  }
}

/* —— Halaman Unduh —— */
.page-hero {
  padding: 2.5rem 0 2.75rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--mute);
}

.crumb a {
  text-decoration: none;
  color: var(--mute);
}

.crumb a:hover {
  color: var(--red);
}

.crumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}

.page-hero .lead {
  margin: 0 0 1.35rem;
  max-width: 40rem;
  color: var(--mute);
  font-size: 1.05rem;
}

/* Hero bantuan — jalur mandiri + logo */
.page-hero.bantuan-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(ellipse 70% 90% at 0% 0%, rgba(212, 32, 47, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(212, 32, 47, 0.07), transparent 50%),
    linear-gradient(180deg, #fff 0%, #fff4f4 100%);
}

.page-hero.bantuan-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), #8b1a24);
}

.bantuan-hero-stage {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

.bantuan-brand {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--red);
}

.page-hero.bantuan-hero h1 {
  max-width: 16ch;
  color: var(--ink);
}

.page-hero.bantuan-hero .lead {
  max-width: 36rem;
  color: var(--mute);
}

.bantuan-hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.bantuan-hero-glow {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(212, 32, 47, 0.16), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(212, 32, 47, 0.08), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--red) 18%, transparent);
}

.bantuan-hero-logo-main {
  position: relative;
  z-index: 1;
  width: 42%;
  height: auto;
  border-radius: 22%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(212, 32, 47, 0.14);
  animation: bantuan-pulse 4.5s ease-in-out infinite;
}

.bantuan-hero-cap {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}

@keyframes bantuan-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .bantuan-hero-logo-main {
    animation: none;
  }
}

.dl-panel {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 1.25rem;
}

.dl-panel-top {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.dl-panel-top img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--bg-soft);
}

.dl-panel-top strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.dl-panel-top span {
  color: var(--mute);
  font-size: 0.9rem;
}

.dl-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dl-meta li {
  background: var(--bg-soft);
  padding: 0.7rem 0.8rem;
}

.dl-meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.dl-meta b {
  font-family: var(--display);
  font-size: 1rem;
}

.flow-mini {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow;
}

.flow-mini li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--mute);
}

.flow-mini li::before {
  content: counter(flow);
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
}

.install-grid {
  display: grid;
  gap: 0.85rem;
}

.install-grid > * {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
}

.install-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--red-deep);
}

.install-grid p {
  margin: 0;
  color: var(--mute);
}

.tip-grid {
  display: grid;
  gap: 0.85rem;
}

.tip-grid > * {
  border-left: 4px solid var(--red);
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
}

.tip-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.tip-grid p {
  margin: 0;
  color: var(--mute);
}

.rich-list {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.15rem 1.25rem;
}

.rich-list ul {
  margin: 0;
}

.rich-list li {
  margin-bottom: 0.5rem;
  color: var(--mute);
}

.rich-list li:last-child {
  margin-bottom: 0;
}

.story-block > p {
  margin-bottom: 1rem;
}

.story-block > p:last-child {
  margin-bottom: 0;
}

/* —— Halaman Masuk —— */
.prep-grid {
  display: grid;
  gap: 0.75rem;
}

.prep-grid > * {
  display: grid;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.prep-grid strong {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--red-deep);
}

.prep-grid span {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.55;
}

.habit-grid {
  display: grid;
  gap: 0.85rem;
}

.habit-grid > * {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
}

.habit-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--red-deep);
}

.habit-grid p {
  margin: 0;
  color: var(--mute);
}

.login-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.login-note li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  color: var(--mute);
  font-family: var(--display);
  font-weight: 600;
}

/* Hero masuk — akses akun + device visual */
.page-hero.masuk-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: 0;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 80% at 90% 10%, rgba(212, 32, 47, 0.35), transparent 55%),
    linear-gradient(160deg, #121417 0%, #1c1518 45%, #2a1014 100%);
}

.page-hero.masuk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(100deg, transparent 10%, #000 55%);
  pointer-events: none;
}

.page-hero.masuk-hero .shell {
  position: relative;
  z-index: 1;
  padding-bottom: 2.75rem;
}

.page-hero.masuk-hero .crumb {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero.masuk-hero .crumb a {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero.masuk-hero .crumb a:hover {
  color: #fff;
}

.page-hero.masuk-hero .crumb [aria-current="page"] {
  color: #fff;
}

.masuk-hero-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.masuk-brand {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 7.5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.page-hero.masuk-hero .kicker {
  color: #ffc9cf;
}

.page-hero.masuk-hero h1 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
}

.page-hero.masuk-hero .lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1rem;
}

.page-hero.masuk-hero .login-note {
  margin-bottom: 1.25rem;
}

.page-hero.masuk-hero .login-note li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.page-hero.masuk-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.page-hero.masuk-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.page-hero.masuk-hero .btn-red {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.page-hero.masuk-hero .btn-red:hover {
  background: #ffe8ea;
  color: var(--red-deep);
}

.masuk-hero-visual {
  justify-self: center;
  width: min(100%, 260px);
}

.masuk-device {
  background: linear-gradient(180deg, #1f2228 0%, #16181c 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  padding: 0.55rem;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.masuk-device-top {
  display: flex;
  justify-content: center;
  padding: 0.35rem 0 0.55rem;
}

.masuk-device-top span {
  width: 4.5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.masuk-device-body {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 1.6rem 1.1rem 1.8rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 32, 47, 0.22), transparent 55%),
    #0e1013;
  border-radius: 1rem;
  min-height: 17rem;
  align-content: center;
}

.masuk-device-body img {
  width: 88px;
  height: 88px;
  border-radius: 22%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(212, 32, 47, 0.25);
  animation: masuk-float 4.8s ease-in-out infinite;
}

.masuk-device-title {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.masuk-device-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.masuk-device-lines {
  width: 70%;
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.masuk-device-lines span {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.masuk-device-lines span:last-child {
  width: 62%;
  justify-self: center;
  background: color-mix(in srgb, var(--red) 55%, transparent);
  border-color: transparent;
}

@keyframes masuk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .masuk-device-body img {
    animation: none;
  }
}

/* —— Halaman Game / detail aplikasi (showcase) —— */
.page-game {
  background: #fff;
}

.gx-billboard {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #1a1214;
}

.gx-billboard img {
  width: 100%;
  max-width: none;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  animation: gx-zoom 1.2s var(--ease) both;
}

.gx-billboard figcaption {
  padding: 0.65rem 0 0;
  color: var(--mute);
  font-size: 0.88rem;
  background: #fff;
}

.gx-intro {
  position: relative;
  padding: 1.75rem 0 0;
  background:
    radial-gradient(70% 80% at 0% 0%, rgba(212, 32, 47, 0.08), transparent 55%),
    radial-gradient(50% 60% at 100% 20%, rgba(212, 32, 47, 0.05), transparent 50%),
    #fff;
}

.gx-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0 1.5rem;
  color: var(--mute);
  font-size: 0.86rem;
}

.gx-crumb a {
  color: var(--mute);
  text-decoration: none;
}

.gx-crumb a:hover {
  color: var(--red);
}

.gx-crumb b {
  color: var(--ink);
  font-weight: 600;
}

.gx-head {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.gx-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 14px 36px rgba(212, 32, 47, 0.18);
  animation: gx-float 4s ease-in-out infinite;
}

.gx-name {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.gx-head-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 18ch;
}

.gx-desc {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gx-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  margin: 1.75rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.gx-meta li {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}

.gx-meta em {
  display: block;
  font-style: normal;
  font-family: var(--text);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.15rem;
}

.gx-layout {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 1rem;
}

.gx-main {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
}

.gx-sec h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.gx-prose {
  display: grid;
  gap: 1rem;
}

.gx-prose p {
  margin: 0;
  color: var(--mute);
  line-height: 1.8;
}

.gx-prose strong {
  color: var(--ink);
}

.gx-steps {
  display: grid;
  gap: 1.25rem;
}

.gx-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.gx-step-n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
  opacity: 0.85;
}

.gx-steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.gx-steps p {
  margin: 0;
  color: var(--mute);
  line-height: 1.7;
}

.gx-faq {
  display: grid;
  gap: 0.5rem;
}

.gx-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.gx-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gx-faq summary::-webkit-details-marker {
  display: none;
}

.gx-faq summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 700;
}

.gx-faq details[open] summary::after {
  content: "–";
}

.gx-faq p {
  margin: 0.65rem 0 0;
  color: var(--mute);
  line-height: 1.65;
  padding-right: 1.5rem;
}

.gx-side-sticky {
  display: grid;
  gap: 1.5rem;
}

.gx-side-dl {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.gx-side-note {
  margin: -0.85rem 0 0;
  text-align: center;
  color: var(--mute);
  font-size: 0.86rem;
}

.gx-side-block h2 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.gx-plus,
.gx-minus {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.gx-plus li,
.gx-minus li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gx-plus li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.gx-minus li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #8a8a8a;
  font-weight: 800;
}

.gx-side-block blockquote {
  margin: 0 0 1rem;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid var(--red);
}

.gx-side-block blockquote:last-child {
  margin-bottom: 0;
}

.gx-side-block blockquote p {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gx-side-block cite {
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--mute);
}

.gx-more {
  padding: 2rem 0 3rem;
  margin-top: 1rem;
  background: linear-gradient(180deg, #fff 0%, #faf6f5 40%, #faf6f5 100%);
  border-top: 1px solid var(--line);
}

.gx-more-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.15rem;
}

.gx-more-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.gx-more-head a {
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  color: var(--red);
}

.gx-more-head a:hover {
  color: var(--ink);
}

.gx-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gx-strip a {
  scroll-snap-align: start;
  display: grid;
  gap: 0.4rem;
  justify-items: start;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.gx-strip img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  transition: transform 0.35s var(--ease);
}

.gx-strip span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
}

.gx-strip small {
  color: var(--mute);
  font-size: 0.78rem;
  line-height: 1.3;
}

.gx-strip a:hover img {
  transform: translateY(-3px);
}

.gx-strip a:hover span {
  color: var(--red);
}

@keyframes gx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes gx-zoom {
  from { transform: scale(1.04); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@media (min-width: 720px) {
  .gx-head {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
  }

  .gx-icon {
    width: 112px;
    height: 112px;
  }

  .gx-head-copy h1 {
    max-width: 22ch;
  }

  .gx-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (min-width: 980px) {
  .gx-billboard img {
    aspect-ratio: 2.4 / 1;
    max-height: 420px;
  }

  .gx-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: 3rem;
    align-items: start;
    padding-top: 3rem;
  }

  .gx-side-sticky {
    position: sticky;
    top: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gx-icon,
  .gx-billboard img {
    animation: none;
  }
}

/* —— Halaman Resmi —— */
.resmi-summary {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resmi-summary img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  background: #fff;
}

.resmi-summary-brand {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.resmi-summary-meta {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.prose-resmi {
  max-width: 46rem;
  display: grid;
  gap: 0.85rem;
}

.prose-resmi > p {
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid var(--red-soft);
  color: var(--ink);
  line-height: 1.75;
}

.prose-resmi > p:first-child {
  border-left-color: var(--red);
  background: linear-gradient(90deg, rgba(212, 32, 47, 0.04), transparent 70%);
  padding-right: 0.5rem;
}

.komitmen-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
}

.komitmen-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.komitmen-box h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.komitmen-box > p {
  margin: 0 0 1rem;
  color: var(--mute);
  line-height: 1.7;
}

.komitmen-box ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  counter-reset: komitmen;
}

.komitmen-box li {
  counter-increment: komitmen;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: var(--bg-soft);
  color: var(--ink);
  line-height: 1.55;
}

.komitmen-box li::before {
  content: counter(komitmen, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  line-height: 1.4;
}

.audience-list {
  border: 0;
  background: transparent;
  padding: 0;
}

.audience-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  counter-reset: audiens;
}

.audience-list li {
  counter-increment: audiens;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 0;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.55;
}

.audience-list li::before {
  content: counter(audiens, decimal-leading-zero);
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
}

.next-hint {
  margin: 1.25rem 0 0;
  padding: 0.95rem 1.05rem;
  background: var(--red-soft);
  color: var(--ink);
  border-left: 3px solid var(--red);
  font-size: 0.96rem;
  line-height: 1.6;
}

.next-hint a {
  font-weight: 700;
}

.guide-stack {
  display: grid;
  gap: 0;
  counter-reset: panduan;
}

.guide-stack h3 {
  margin: 0.85rem 0 0;
  padding: 1.05rem 1.15rem 0.35rem 3.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
}

.guide-stack h3::before {
  counter-increment: panduan;
  content: counter(panduan, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-family: var(--display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
}

.guide-stack h3:first-child {
  margin-top: 0;
}

.guide-stack p {
  margin: 0 0 0.85rem;
  padding: 0 1.15rem 1.1rem 3.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--mute);
  line-height: 1.65;
}

.guide-stack h3 + p {
  margin-bottom: 0.85rem;
}

.check-grid {
  display: grid;
  gap: 0.85rem;
  counter-reset: cek;
}

.check-grid > * {
  counter-increment: cek;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.15rem 1.15rem 1.15rem 3.4rem;
  position: relative;
}

.check-grid > *::before {
  content: counter(cek);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
}

.check-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.check-grid p {
  margin: 0;
  color: var(--mute);
  line-height: 1.6;
}

/* Soft page ending — mengganti close merah penuh */
.end-soft {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 1px solid var(--line);
}

.end-soft h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.end-soft p {
  margin: 0;
  color: var(--mute);
  max-width: 40rem;
}

.end-soft .actions {
  margin-top: 0.25rem;
}

/* —— Halaman Bantuan —— */
.help-topics {
  display: grid;
  gap: 1rem;
}

.help-topic {
  scroll-margin-top: 5.5rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.3rem;
  position: relative;
}

.help-topic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.help-topic h3,
.help-topic header h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.help-topic > p,
.help-topic header + p {
  margin: 0 0 0.85rem;
  color: var(--mute);
  line-height: 1.65;
}

.help-topic ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.help-topic li {
  color: var(--ink);
  line-height: 1.55;
  padding-left: 0.2rem;
}

.help-topic-link {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.help-topic-link a {
  font-family: var(--display);
  font-weight: 700;
}

.quick-check {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem 1.25rem 1.3rem;
}

.quick-check ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  counter-reset: cekcepat;
}

.quick-check li {
  counter-increment: cekcepat;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
  padding: 0.8rem 0.9rem;
  background: var(--bg-soft);
  color: var(--ink);
  line-height: 1.55;
}

.quick-check li::before {
  content: counter(cekcepat, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.92rem;
}

/* Story */
.story {
  max-width: 46rem;
  font-size: 1.05rem;
}

.story p + p {
  margin-top: 0.2rem;
}

/* Pros — red index strip */
.pros {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pros li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.9rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.pros .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--red);
}

.pros h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.pros p {
  margin: 0;
  color: var(--mute);
}

/* Audience rows */
.who {
  display: grid;
  gap: 0;
}

.who > div {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.who h3 {
  margin: 0 0 0.4rem;
  color: var(--red-deep);
  font-size: 1.05rem;
}

.who p {
  color: var(--mute);
}

.who p:last-child {
  margin-bottom: 0;
}

/* Links map */
.links {
  display: grid;
  gap: 0.65rem;
}

.links a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.links a strong {
  font-family: var(--display);
  font-size: 1.05rem;
}

.links a span {
  color: var(--mute);
  font-size: 0.9rem;
  text-align: right;
}

.links a:hover strong {
  color: var(--red);
}

/* Shots */
.shots {
  display: grid;
  gap: 0.85rem;
}

.shots figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.shots img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--bg-soft);
}

.shots figcaption {
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  color: var(--mute);
  border-top: 3px solid var(--red);
}

/* Two notes */
.split {
  display: grid;
  gap: 1rem;
}

.note {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 1.2rem 1.25rem;
}

.note h2,
.note h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.note li {
  margin-bottom: 0.45rem;
  color: var(--mute);
}

.note li:last-child {
  margin-bottom: 0;
}

/* People */
.names {
  display: grid;
  gap: 0.55rem;
}

.names p {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--mute);
  font-size: 0.95rem;
}

.names strong {
  color: var(--ink);
  font-family: var(--display);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.steps article {
  counter-increment: step;
  padding: 1.1rem 0 1.1rem 3.2rem;
  position: relative;
  border-top: 1px solid var(--line);
}

.steps article::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--mute);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1rem 1.1rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-btn::after {
  content: "+";
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item.on .faq-btn::after {
  content: "–";
}

.faq-body {
  display: none;
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--mute);
}

.faq-item.on .faq-body {
  display: block;
}

/* Closing */
.close {
  display: grid;
  gap: 1.1rem;
  padding: 1.6rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
}

.close h2 {
  margin: 0 0 0.4rem;
  color: #fff;
}

.close p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.foot {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.foot-nav a {
  text-decoration: none;
  color: var(--mute);
  font-weight: 700;
  font-size: 0.9rem;
}

.foot-nav a:hover {
  color: var(--red);
}

.foot-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  color: var(--mute);
  font-size: 0.88rem;
}

.foot-copy p {
  margin: 0;
}

/* Motion */
.fadein {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fadein.in {
  opacity: 1;
  transform: none;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1.35fr 0.85fr;
    min-height: min(84vh, 680px);
  }

  .hero-main {
    display: grid;
    align-content: center;
    padding: 3.5rem 0;
  }

  .hero-main .shell {
    width: min(100% - 1.5rem, 620px);
    margin-left: max(0.75rem, calc((100vw - var(--max)) / 2));
    margin-right: 0;
  }

  .aplikasi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .katalog-tools {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
  }

  .katalog-hero-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2rem 3rem;
    min-height: 22rem;
  }

  .bantuan-hero-stage {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
    gap: 2rem 2.5rem;
    align-items: center;
  }

  .masuk-hero-stage {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr);
    gap: 2rem 3rem;
    min-height: 20rem;
  }

  .masuk-hero-visual {
    justify-self: end;
    width: 100%;
    max-width: 280px;
  }

  .page-hero.masuk-hero h1 {
    max-width: 15ch;
  }

  .bantuan-hero-visual {
    width: 100%;
    max-width: 320px;
    justify-self: end;
  }

  .katalog-hero-visual {
    width: 100%;
    max-width: 380px;
    justify-self: end;
  }

  .katalog-hero h1 {
    max-width: 16ch;
  }

  .page-hero.katalog-hero h1 {
    max-width: 16ch;
  }

  .pros {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .who {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .shots {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .names {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .steps article {
    border-top: 0;
    padding-left: 0;
    padding-top: 3.4rem;
  }

  .steps article::before {
    top: 0;
  }

  .close {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }

  .dl-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .dl-meta {
    grid-template-columns: repeat(4, 1fr);
  }

  .install-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prep-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .habit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-list ul {
    grid-template-columns: 1fr 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .help-topics {
    grid-template-columns: 1fr 1fr;
  }

  .komitmen-box ul {
    grid-template-columns: 1fr 1fr;
  }

  .flow-mini {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .flow-mini li {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .aplikasi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fadein {
    opacity: 1;
    transform: none;
  }
}
