/* id-no9 — soft Merah Putih, airy layout */
:root {
  --red: #d8212e;
  --red-deep: #b41824;
  --red-mist: #fff1f2;
  --red-line: rgba(216, 33, 46, 0.18);
  --white: #ffffff;
  --snow: #faf7f7;
  --ink: #1a1a1a;
  --mute: #6b6b6b;
  --line: rgba(26, 26, 26, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --header: 60px;
  --max: 1040px;
  --serif: "Literata", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--header);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— sticky auth —— */
.stick {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.stick-row {
  height: 100%;
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.stick-logo img {
  height: 34px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
}

.stick-btns {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-line {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.btn-line:hover {
  background: var(--red-mist);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(216, 33, 46, 0.22);
}

.btn-red:hover {
  background: var(--red-deep);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* —— soft nav —— */
.menu {
  background: var(--snow);
  border-bottom: 1px solid var(--line);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.menu-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mute);
  position: relative;
}

.menu-list a:hover,
.menu-list a.is-here {
  color: var(--red);
}

.menu-list a.is-here::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.menu-drawer {
  display: none;
  padding: 0.25rem 0 1rem;
}

.menu-drawer.open {
  display: block;
}

.menu-drawer a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--mute);
}

/* —— hero: open & calm —— */
.intro {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(216, 33, 46, 0.1), transparent 55%),
    radial-gradient(700px 380px at 0% 100%, rgba(216, 33, 46, 0.05), transparent 50%),
    var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}

.intro-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.intro-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.intro-brand {
  display: none;
}

.intro h1 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: var(--ink);
}

.intro-text {
  margin: 0 0 1.6rem;
  max-width: 38ch;
  color: var(--mute);
  font-size: 1.05rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.intro-art {
  display: flex;
  justify-content: center;
  position: relative;
}

.intro-art::before {
  content: "";
  position: absolute;
  width: min(300px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red-mist);
  z-index: 0;
  transform: translate(8%, 6%);
}

.intro-art img {
  position: relative;
  z-index: 1;
  width: min(260px, 68vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 50px rgba(216, 33, 46, 0.16);
}

.intro h1,
.intro-text,
.intro-actions,
.intro-art {
  animation: soft-in 0.8s var(--ease) both;
}

.intro-text { animation-delay: 0.06s; }
.intro-actions { animation-delay: 0.12s; }
.intro-art { animation-delay: 0.1s; }

@keyframes soft-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— metrics as soft pills —— */
.metrics {
  padding: 0 0 2.5rem;
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.metric {
  flex: 1 1 140px;
  min-width: 0;
  padding: 1rem 1.15rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mute);
}

/* —— sections —— */
.block {
  padding: 3.75rem 0;
}

.block-tint {
  background: var(--snow);
}

.block-rose {
  background: linear-gradient(180deg, var(--red-mist), #fff 70%);
}

.block-head {
  margin-bottom: 2rem;
  max-width: 34rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.block-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}

.block-head p {
  margin: 0;
  color: var(--mute);
}

.show {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.show.on {
  opacity: 1;
  transform: none;
}

/* about: two-rail story */
.story {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 2rem;
  align-items: start;
}

.story-rail {
  position: sticky;
  top: calc(var(--header) + 1.25rem);
  padding-top: 0.25rem;
}

.story-rail .big {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  color: var(--red);
  margin: 0;
  opacity: 0.9;
}

.story-copy {
  display: grid;
  gap: 1.35rem;
  border-left: 2px solid var(--red-line);
  padding-left: 1.5rem;
}

.story-copy p {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
}

/* features: flowing 2-col soft tiles */
.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.perk {
  padding: 1.35rem 1.3rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.perk:hover {
  border-color: var(--red-line);
  box-shadow: 0 12px 30px rgba(216, 33, 46, 0.07);
}

.perk-n {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.perk h4 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.perk p {
  margin: 0;
  color: var(--mute);
  font-size: 0.96rem;
}

/* apps catalog */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.app-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  padding: 1rem 0.95rem 1.05rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.app-item:hover {
  border-color: var(--red-line);
  box-shadow: 0 12px 28px rgba(216, 33, 46, 0.08);
  transform: translateY(-2px);
}

.app-icon {
  width: 72px;
  height: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

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

.app-name {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-meta {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-stats {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.app-stats span:first-child {
  color: var(--red);
}

.app-stats span:last-child {
  color: var(--ink);
}

/* screenshots: gentle horizontal wrap */
.phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.phone {
  flex: 0 1 220px;
  max-width: 260px;
  min-width: 0;
  text-align: center;
}

.phone-shell {
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
}

.phone-shell img {
  width: 100%;
  aspect-ratio: 384 / 688;
  object-fit: cover;
  border-radius: 20px;
  background: var(--snow);
}

.phone figcaption {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--mute);
  font-weight: 600;
}

.phone:nth-child(2) {
  transform: translateY(1rem);
}

/* reviews: soft stacked */
.voices {
  display: grid;
  gap: 1rem;
}

.voice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.4rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-width: 0;
}

.voice-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-mist);
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.voice p {
  margin: 0 0 0.75rem;
  color: var(--mute);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.review-tags mark {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: transparent;
}

.review-tags .id-tp {
  background: #eaf7ef;
  color: #1f7a45;
}

.review-tags .id-tc {
  background: #fff3e8;
  color: #a85a18;
}

.voice-who {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--red);
}

/* tips: soft timeline */
.tips {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.25rem;
}

.tips::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: var(--red-line);
  border-radius: 2px;
}

.tip {
  position: relative;
  padding: 0 0 1.5rem 1.35rem;
  min-width: 0;
}

.tip:last-child {
  padding-bottom: 0;
}

.tip::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  box-sizing: border-box;
}

.tip-who {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.tip-who span {
  font-weight: 600;
  color: var(--mute);
}

.tip p {
  margin: 0;
  color: var(--mute);
}

/* facts + hash */
.facts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem;
}

.fact-panel,
.hash-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  min-width: 0;
}

.fact-panel h3,
.hash-panel h3 {
  font-family: var(--serif);
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.fact-list {
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.fact-list div {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.fact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-list dt {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.2rem;
}

.fact-list dd {
  margin: 0;
  color: var(--mute);
  font-weight: 600;
}

.hash-panel code {
  display: block;
  word-break: break-all;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--snow);
  color: var(--ink);
  margin-bottom: 0.85rem;
  font-family: ui-monospace, Consolas, monospace;
}

/* versions: gentle twin */
.twins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.twin {
  padding: 1.5rem 1.35rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.twin.focus {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--red), #ff7a85) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 16px 36px rgba(216, 33, 46, 0.1);
}

.twin-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.twin-ver {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.twin-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-mist);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.twin-badge.soft {
  color: var(--mute);
  background: var(--snow);
}

.twin-meta {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.twin-meta li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}

.twin-meta span {
  color: var(--mute);
}

.twin-log {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  background: var(--red-mist);
  border-radius: var(--radius-sm);
}

.twin-log h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.twin-log p {
  margin: 0 0 0.55rem;
  color: var(--mute);
  font-size: 0.94rem;
}

.twin-log ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.twin-log li {
  margin-bottom: 0.25rem;
}

.twin-log li:last-child {
  margin-bottom: 0;
}

.twin-note {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  background: var(--snow);
  border-radius: var(--radius-sm);
  flex: 1;
}

.twin-note p {
  margin: 0 0 0.4rem;
  color: var(--mute);
  font-size: 0.94rem;
}

.twin-note cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--red);
}

.twin .btn {
  width: 100%;
}

.jump {
  display: inline-block;
  margin-top: 1.35rem;
  font-weight: 700;
  color: var(--red);
}

.jump:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* closing band */
.close {
  margin-top: 2rem;
  padding: 2.25rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--red);
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 44px rgba(216, 33, 46, 0.25);
}

.close h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.close p {
  margin: 0 auto 1.15rem;
  max-width: 34rem;
  opacity: 0.92;
}

.close .btn-line {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.close .btn-line:hover {
  background: rgba(255, 255, 255, 0.12);
}

.close .btn-red {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}

.close .btn-red:hover {
  background: var(--snow);
}

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

/* footer */
.end {
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.end-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--mute);
}

.end-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.end-links a:hover {
  color: var(--red);
}

.end-mail {
  color: var(--ink);
  font-weight: 700;
  word-break: break-all;
}

.end-mail:hover {
  color: var(--red);
}

/* —— responsive —— */
@media (max-width: 900px) {
  .intro-grid,
  .story,
  .facts,
  .twins {
    grid-template-columns: 1fr;
  }

  .story-rail {
    position: static;
  }

  .story-copy {
    border-left: 0;
    padding-left: 0;
    border-top: 2px solid var(--red-line);
    padding-top: 1.25rem;
  }

  .perk-grid {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone:nth-child(2) {
    transform: none;
  }

  .voice {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 56px;
  }

  .inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .menu-btn {
    display: inline-flex;
  }

  .menu-desktop {
    display: none;
  }

  .intro {
    padding: 2.25rem 0 1.5rem;
  }

  .intro-art img {
    width: min(180px, 52vw);
    border-radius: 24px;
  }

  .block {
    padding: 2.75rem 0;
  }

  .btn {
    min-height: 38px;
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
  }

  .stick-logo img {
    height: 30px;
  }

  .phones {
    max-width: 300px;
    margin-inline: auto;
  }

  .phone {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-item {
    flex-direction: row;
    align-items: center;
  }

  .app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .stick-btns {
    gap: 0.3rem;
  }

  .metrics-row {
    gap: 0.5rem;
  }

  .metric {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.85rem 0.9rem;
  }
}

/* ========== instal / inner pages ========== */
.page-hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(216, 33, 46, 0.08), transparent 55%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 1rem;
}

.crumbs a:hover {
  color: var(--red);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  max-width: 28ch;
}

.page-lead {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.chip-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--red-mist);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.step-list {
  display: grid;
  gap: 0.85rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  min-width: 0;
}

.step-content h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.pack-card {
  padding: 1.4rem 1.3rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pack-card-focus {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--red), #ff7a85) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 14px 32px rgba(216, 33, 46, 0.08);
}

.pack-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.pack-top h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.pack-top strong {
  color: var(--red);
  font-size: 1.15rem;
}

.pack-desc {
  margin: 0 0 0.9rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.pack-points {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  color: var(--mute);
  flex: 1;
}

.pack-points li {
  margin-bottom: 0.4rem;
}

.pack-points li:last-child {
  margin-bottom: 0;
}

.pack-card .btn {
  width: 100%;
}

.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.after-card {
  padding: 1.3rem 1.2rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.after-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--red);
}

.after-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.96rem;
}

.xp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.xp-card {
  padding: 1.3rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.xp-card p {
  margin: 0 0 0.85rem;
  color: var(--mute);
}

.xp-who {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--red);
}

@media (max-width: 900px) {
  .pack-grid,
  .after-grid,
  .xp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 1.75rem 0 1.5rem;
  }

  .page-hero h1 {
    max-width: none;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .seo-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.page-meta-line {
  margin: -0.35rem 0 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mute);
}

.toc-wrap {
  padding: 1.25rem 0;
  background: var(--snow);
  border-bottom: 1px solid var(--line);
}

.toc-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  counter-reset: toc;
}

.toc-list li {
  position: relative;
  padding-left: 1.6rem;
  counter-increment: toc;
  font-size: 0.92rem;
  font-weight: 600;
}

.toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red);
}

.toc-list a:hover {
  color: var(--red);
}

.seo-prose {
  max-width: 46rem;
}

.seo-prose p {
  margin: 0 0 1rem;
  color: var(--mute);
  font-size: 1.04rem;
}

.check-list {
  margin: 0;
  padding: 1.1rem 1.15rem 1.1rem 2rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--mute);
}

.check-list li {
  margin-bottom: 0.55rem;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.seo-card {
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.seo-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.seo-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.96rem;
}

.seo-card a {
  color: var(--red);
  font-weight: 700;
}

.seo-card a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  list-style: none;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--mute);
  font-size: 0.96rem;
}

.faq-item a {
  color: var(--red);
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.related-card {
  display: block;
  padding: 1.2rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.related-card:hover {
  border-color: var(--red-line);
  box-shadow: 0 10px 24px rgba(216, 33, 46, 0.07);
}

.related-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--red);
}

.related-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}



/* ========== pembaruan page ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-panel {
  padding: 1.35rem 1.25rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.why-panel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--red);
}

.why-panel p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.change-track {
  display: grid;
  gap: 1rem;
}

.change-item {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1.1rem;
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  scroll-margin-top: calc(var(--header) + 12px);
}

.change-item-latest {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--red), #ff7a85) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 14px 32px rgba(216, 33, 46, 0.08);
}

.change-side {
  min-width: 0;
}

.change-ver {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.change-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--red-mist);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.change-size {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  color: var(--mute);
}

.change-size li {
  margin-bottom: 0.25rem;
}

.change-size strong {
  color: var(--ink);
}

.change-body {
  min-width: 0;
}

.change-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.change-body p {
  margin: 0 0 0.65rem;
  color: var(--mute);
  font-size: 0.96rem;
}

.change-body ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--mute);
  font-size: 0.94rem;
}

.change-body li {
  margin-bottom: 0.3rem;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tip-card {
  padding: 1.25rem 1.2rem;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.tip-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--red);
}

.tip-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.96rem;
}

@media (max-width: 900px) {
  .why-grid,
  .tip-grid {
    grid-template-columns: 1fr;
  }

  .change-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ========== faq page extras ========== */
.faq-list .faq-item {
  scroll-margin-top: calc(var(--header) + 12px);
}

#faq-unduh,
#faq-instal,
#faq-versi,
#faq-keamanan,
#faq-katalog,
#faq-dukungan,
#faq-panduan {
  scroll-margin-top: calc(var(--header) + 8px);
}

/* ========== FAQ finder (unique vs original) ========== */
.finder-wrap {
  padding: 0 0 0.25rem;
  margin-top: -0.5rem;
}

.finder {
  padding: 1rem 1.1rem 1.05rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red-mist), var(--white) 55%);
  border: 1px dashed var(--red-line);
}

.finder-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(216, 33, 46, 0.06);
}

.finder-ico {
  color: var(--red);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 700;
}

.finder-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
}

.finder-input::placeholder {
  color: #9a9a9a;
}

.finder-clear {
  border: 0;
  background: var(--red-mist);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}

.finder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.finder-tag {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--mute);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.finder-tag:hover,
.finder-tag.is-on {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.finder-meter {
  margin: 0.7rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--mute);
}

.finder-meter.is-empty {
  color: var(--red);
}

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

.faq-answer {
  margin-top: 0.15rem;
}

.faq-answer p {
  margin: 0.7rem 0 0;
  color: var(--mute);
  font-size: 0.96rem;
}

@media (max-width: 720px) {
  .finder-bar {
    grid-template-columns: auto 1fr;
  }

  .finder-clear {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

/* ========== aplikasi catalog ========== */
.page-aplikasi {
  --header: 64px;
}

.stick-apps {
  height: auto;
  min-height: var(--header);
  padding: 0.45rem 0 0.35rem;
  flex-direction: column;
  justify-content: center;
}

.stick-row-apps {
  width: min(100% - 1.25rem, var(--max));
  gap: 0.55rem;
}

.top-find {
  flex: 1 1 180px;
  min-width: 0;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.top-find-ico {
  color: var(--red);
  font-weight: 800;
  line-height: 1;
}

.top-find-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
}

.top-find-x {
  border: 0;
  background: transparent;
  color: var(--mute);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.top-find-status {
  width: min(100% - 1.25rem, var(--max));
  margin: 0.25rem auto 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
}

.app-page-info {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mute);
}

.app-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.app-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0.9rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  height: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.app-row:hover {
  border-color: var(--red-line);
  box-shadow: 0 12px 28px rgba(216, 33, 46, 0.08);
  transform: translateY(-2px);
}

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

.app-row-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.app-row-icon {
  width: 72px;
  height: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--snow);
}

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

.app-row-name {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-row-meta {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--mute);
}

.app-row-desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  white-space: normal;
}

.app-row-action {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding-top: 0.15rem;
  border-top: 1px dashed var(--line);
}

.app-row-rating {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--red);
}

.app-row-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.app-row-link:hover {
  background: var(--red-mist);
}

.app-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.app-pager a,
.app-pager__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--white);
}

.app-pager a:hover {
  border-color: var(--red-line);
  color: var(--red);
}

.app-pager__current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.app-pager__prev,
.app-pager__next {
  padding-inline: 0.9rem;
}

@media (max-width: 1100px) {
  .app-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-aplikasi {
    --header: 108px;
  }

  .stick-row-apps {
    flex-wrap: wrap;
  }

  .top-find {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .app-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .app-row {
    padding: 0.85rem 0.7rem 0.9rem;
  }

  .app-row-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .app-row-action {
    flex-direction: column;
    align-items: stretch;
  }

  .app-row-link {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .app-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== legal pages (privasi / ketentuan) ========== */
.legal-shell {
  max-width: 48rem;
}

.legal-note {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.15rem;
  background: var(--red-mist);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-note p {
  margin: 0;
  color: var(--ink-soft, var(--mute));
  font-size: 0.98rem;
}

.legal-body {
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-body > *:first-child {
  margin-top: 0;
}

.legal-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.85rem;
}

.legal-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 0.55rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.legal-body h3:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-body p {
  margin: 0 0 0.95rem;
}

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

.legal-body li {
  margin-bottom: 0.4rem;
}

.legal-body a {
  color: var(--red);
  font-weight: 700;
}

.legal-body a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-contact {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--snow);
}

.legal-contact h2 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.legal-contact p {
  margin: 0;
  color: var(--mute);
  line-height: 1.7;
}

.legal-contact a {
  color: var(--red);
  font-weight: 800;
}

.legal-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== tentang kami ========== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.about-hero-art {
  justify-self: end;
}

.about-hero-art img {
  width: min(160px, 42vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(216, 33, 46, 0.12);
  background: var(--snow);
}

.about-stack {
  display: grid;
  gap: 0.9rem;
}

.about-slice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}

.about-slice:nth-child(even) {
  background: linear-gradient(135deg, var(--red-mist), var(--white) 55%);
}

.about-slice-no {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  min-width: 2.2rem;
}

.about-slice-body {
  min-width: 0;
}

.about-slice-body h2 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.about-slice-body p {
  margin: 0;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.7;
}

.about-contact {
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  max-width: 42rem;
}

.about-contact-mail {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.about-contact-mail a,
.about-contact a {
  color: var(--red);
  font-weight: 800;
  word-break: break-all;
}

.about-contact p {
  margin: 0;
  color: var(--mute);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-art {
    justify-self: start;
    order: -1;
  }
}

@media (max-width: 720px) {
  .about-slice {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

.about-goal {
  margin: 0 0 1.15rem;
  padding: 1.25rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-goal h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--red);
}

.about-goal p {
  margin: 0;
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hash-hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--mute);
}

.about-fact-full {
  grid-column: 1 / -1;
}

.facts:has(.about-fact-full) {
  grid-template-columns: 1fr;
}
