:root {
  --bg: #f0f6fb;
  --surface: #ffffff;
  --surface-2: #f6fafd;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
  --blue: #0ea5e9;
  --blue-deep: #0c4a6e;
  --blue-soft: #e0f2fe;
  --blue-line: #bae6fd;
  --gold: #f59e0b;
  --gold-deep: #92400e;
  --gold-soft: #fef3c7;
  --gold-line: #fcd34d;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;
  --radius-card: 20px;
  --radius-pill: 999px;
  --font-display: "Poppins", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px -10px rgba(14, 165, 233, 0.3);
  --wrap-pad: 24px;
  --pad-masthead-top: 64px;
  --pad-compact-top: 32px;
  --pad-dashboard-top: 68px;
  --pad-footer-bottom: 52px;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
a {
  color: inherit;
}
a,
button {
  touch-action: manipulation;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* ===== HEADER ===== */
header.masthead {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c4a6e 0%, #082f49 50%, #0f172a 100%);
  color: #e0f2fe;
  padding: 0 0 100px;
  padding-top: var(--pad-masthead-top);
  padding-top: calc(var(--pad-masthead-top) + env(safe-area-inset-top, 0px));
  border-bottom: 3px solid var(--gold);
}
header.masthead-compact {
  padding-bottom: 40px;
  padding-top: var(--pad-compact-top);
  padding-top: calc(var(--pad-compact-top) + env(safe-area-inset-top, 0px));
}

/* Glow effect di belakang hero */
.hero-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-line);
  text-decoration: none;
  margin-bottom: 18px;
  position: relative;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: #fff;
}

/* Dashboard hero */
header.masthead-dashboard {
  padding-bottom: 64px;
  padding-top: var(--pad-dashboard-top);
  padding-top: calc(var(--pad-dashboard-top) + env(safe-area-inset-top, 0px));
  z-index: 1;
}
.hero-inner {
  position: relative;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #7dd3fc;
  margin: 20px 0 0;
  letter-spacing: 0.02em;
}
.hero-meta span[aria-hidden] {
  color: var(--gold-line);
  opacity: 0.6;
}

/* Focus states */
.service-card:focus-visible,
.chip:focus-visible,
.back-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.masthead-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.emblem {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  background: #fff;
  transition: transform 0.3s ease;
}
.emblem:hover {
  transform: scale(1.05) rotate(3deg);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-line);
  margin: 4px 0 12px;
}
h1.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #f0f9ff;
  max-width: 640px;
  letter-spacing: -0.02em;
}
.masthead-compact h1.title {
  margin-bottom: 0;
  font-size: 28px;
}
.lede {
  font-size: 16px;
  color: #bae6fd;
  max-width: 580px;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== DASHBOARD GRID ===== */
main {
  padding: 48px 0 80px;
}
main.dashboard-main {
  padding-top: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== SERVICE CARD (Modern) ===== */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 28px 24px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: border-color 0.25s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease,
    opacity 0.5s ease;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card.cat-siswa::before {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}
.service-card.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--delay, 0ms);
}
.service-card:hover {
  border-color: var(--blue-line);
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.service-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), #dbeafe);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.cat-siswa .service-icon {
  background: linear-gradient(135deg, var(--gold-soft), #fef9c3);
  color: var(--gold-deep);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-4deg);
}
.service-kategori {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 4px 0 0;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service-ringkas {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tag {
  font-size: 12px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-weight: 500;
}
.tag-muted {
  color: var(--ink-faint);
  background: var(--surface-2);
  border-color: var(--border);
}
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border-soft);
}
.service-biaya {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  padding: 4px 10px;
  border-radius: 8px;
}
.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}
.service-link-arrow {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-link {
  color: var(--blue);
}
.service-card:hover .service-link-arrow {
  transform: translateX(4px);
}

/* ===== DETAIL PAGE (layanan.php) ===== */
.sop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  margin-bottom: 28px;
  scroll-margin-top: 80px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.sop-card:hover {
  box-shadow: var(--shadow-md);
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.card-kode {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid var(--gold-line);
  font-weight: 600;
}
h2.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meliputi {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 340px;
}

.card-body {
  display: flex;
  gap: 40px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
  margin-top: 6px;
}
.card-body .col {
  flex: 1;
  min-width: 0;
}
.col h3 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 700;
  margin: 20px 0 14px;
}
.subgroup-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-deep);
  margin: 16px 0 10px;
}
.subgroup-label:first-child {
  margin-top: 0;
}

ul.check-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
ul.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}
ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), #fcd34d);
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

ol.step-list {
  list-style: none;
  counter-reset: step;
  margin: 0 0 6px;
  padding: 0;
}
ol.step-list li {
  position: relative;
  counter-increment: step;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}
ol.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #e0f2fe;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.waktu-block {
  max-width: 460px;
}
.waktu-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
  font-weight: 600;
}
.waktu-value {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

.stamp {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), #0ea5e9);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  position: relative;
  box-shadow: 0 8px 24px rgba(12, 74, 110, 0.25);
}
.stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 199, 0, 0.5);
}
.stamp-text {
  text-align: center;
  color: var(--gold);
}
.stamp-text .big {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.stamp-text .small {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  margin-top: 2px;
  color: #e0f2fe;
}

/* Navigasi layanan lain */
.other-services {
  margin-top: 12px;
}
.other-services-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 12px;
  font-weight: 600;
}
.directory-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}
.directory-inner::-webkit-scrollbar {
  display: none;
}
.directory-inner-static {
  flex-wrap: wrap;
  overflow: visible;
}
.chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-weight: 500;
}
.chip .chip-kode {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
}
.chip:hover {
  border-color: var(--blue-line);
  color: var(--ink);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
footer.page-foot {
  border-top: 1px solid var(--border);
  padding: 32px 0 0;
  padding-bottom: var(--pad-footer-bottom);
  padding-bottom: calc(var(--pad-footer-bottom) + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 18px;
}
.foot-emblem {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
  border: 2px solid var(--gold);
}
footer.page-foot p {
  font-size: 13.5px;
  color: var(--ink-faint);
  max-width: 680px;
  line-height: 1.7;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --pad-masthead-top: 44px;
  }
  header.masthead {
    padding-bottom: 48px;
  }
  h1.title {
    font-size: 28px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sop-card {
    padding: 24px;
  }
  .card-body {
    flex-direction: column;
    gap: 8px;
  }
  .stamp {
    width: 80px;
    height: 80px;
  }
  .card-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  :root {
    --pad-footer-bottom: 28px;
  }
  footer.page-foot {
    padding-top: 28px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .masthead-compact h1.title {
    font-size: 22px;
  }

  /* Perbesar target sentuh supaya nyaman ditekan jari */
  .chip {
    padding: 11px 16px;
    min-height: 40px;
  }
  .service-card {
    padding: 22px 22px 20px;
  }
  .back-link {
    padding: 6px 0;
    min-height: 32px;
  }

  /* Beri jarak aman di dasar konten supaya tidak tertutup tombol
     "Pasang Aplikasi" yang mengambang (fixed) saat discroll ke bawah. */
  main {
    padding: 36px 0 calc(64px + 96px + env(safe-area-inset-bottom, 0px));
  }
}

/* Layar sangat kecil (HP entry-level, ~360px ke bawah) */
@media (max-width: 400px) {
  :root {
    --wrap-pad: 16px;
  }
  h1.title {
    font-size: 23px;
  }
  .masthead-row {
    gap: 14px;
  }
  .emblem {
    width: 52px;
    height: 52px;
    border-width: 2px;
  }
  .eyebrow {
    font-size: 10.5px;
    margin: 2px 0 8px;
  }
  .lede {
    font-size: 14.5px;
  }
  .hero-meta {
    font-size: 11.5px;
    gap: 8px;
    margin-top: 16px;
  }
  .service-card {
    padding: 20px 18px 18px;
    border-radius: 16px;
  }
  .service-title {
    font-size: 17.5px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .sop-card {
    padding: 18px;
    border-radius: 16px;
  }
  h2.card-title {
    font-size: 20px;
  }
  .meliputi {
    max-width: 100%;
  }
  .stamp {
    width: 68px;
    height: 68px;
  }
  .stamp-text .big {
    font-size: 13px;
  }
  .card-foot {
    gap: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Matikan animasi hover yang "nyangkut" setelah disentuh di layar sentuh */
@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .chip:hover,
  .emblem:hover {
    transform: none;
  }
  .service-card:hover .service-icon {
    transform: none;
  }
  .service-card:hover .service-link-arrow {
    transform: none;
  }
}

/* Ruang aman kiri/kanan untuk notch/lekukan layar saat berjalan sebagai PWA */
@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--wrap-pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--wrap-pad), env(safe-area-inset-right, 0px));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .service-card:hover {
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== Tombol "Pasang Aplikasi" (PWA install prompt) ===== */
.pwa-install-btn {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 84px;
  padding: 14px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-deep), #082f49);
  color: #f0f9ff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  line-height: 1.25;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pwa-btn-in 0.4s ease;
}
.pwa-install-btn[hidden] {
  display: none;
}
@keyframes pwa-btn-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.pwa-install-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-line);
}
@media (hover: hover) and (pointer: fine) {
  .pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
  }
}
@media (max-width: 480px) {
  .pwa-install-btn {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 76px;
    padding: 12px 8px;
    font-size: 11px;
  }
}

/* ===== Modal panduan pemasangan manual (fallback saat prompt native tak tersedia) ===== */
.pwa-install-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pwa-install-modal[hidden] {
  display: none;
}
.pwa-install-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}
.pwa-install-modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 16px calc(16px + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-xl);
  animation: pwa-modal-in 0.25s ease;
}
@media (min-width: 640px) {
  .pwa-install-modal {
    align-items: center;
  }
}
@keyframes pwa-modal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pwa-install-modal-box h2 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 12px;
  padding-right: 28px;
}
.pwa-install-modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.pwa-install-modal-x:hover {
  background: var(--border-soft);
}
.pwa-install-modal-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pwa-install-modal-body p {
  margin: 0 0 10px;
}
.pwa-install-modal-body strong {
  color: var(--ink);
}
.pwa-steps {
  margin: 0 0 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
