/* ============================================================
   RVSL Live Studio — Halaman Download / Cara Install (Android)
   Mobile-first, memakai token dari tokens.css.
   ============================================================ */
.dl-body {
  background:
    radial-gradient(120% 80% at 50% -10%, #ffe3ec 0%, rgba(255,227,236,0) 55%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
.dl-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 18px 64px;
}

/* Hero */
.dl-hero { text-align: center; padding: 12px 0 8px; }
.dl-logo {
  width: 88px; height: 88px; margin: 0 auto 16px;
  border-radius: 22px;
  box-shadow: var(--shadow), 0 0 0 6px #fff;
  display: block;
}
.dl-live {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
}
.dl-live i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,46,99,.6);
  animation: dlpulse 1.6s var(--ease) infinite;
}
@keyframes dlpulse { 70% { box-shadow: 0 0 0 8px rgba(255,46,99,0); } }
.dl-hero h1 { font-size: var(--fs-h1); margin: 14px 0 6px; line-height: 1.15; }
.dl-hero p { color: var(--ink-2); margin: 0 auto; max-width: 40ch; }

/* Primary actions */
.dl-cta { display: grid; gap: 10px; margin: 22px 0 8px; }

/* Steps */
.dl-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px 18px;
  margin-top: 18px;
}
.dl-card h2 {
  font-size: var(--fs-h2); margin: 0 0 4px;
  display: flex; align-items: center; gap: 9px;
}
.dl-card > p.sub { color: var(--muted); margin: 0 0 14px; font-size: var(--fs-sm); }

.dl-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.dl-steps li {
  position: relative;
  padding: 12px 0 12px 46px;
  border-top: 1px solid var(--line);
}
.dl-steps li:first-child { border-top: 0; }
.dl-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 11px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.dl-steps b { color: var(--ink); }
.dl-steps .k {
  display: inline-block; padding: 1px 8px; border-radius: 7px;
  background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 700; font-size: 13px; white-space: nowrap;
}

/* APK note */
.dl-apk {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface-2);
  border-radius: var(--r);
  padding: 14px 16px; margin-top: 18px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.dl-apk .ic { font-size: 24px; line-height: 1; }
.dl-apk .t { font-weight: 800; margin-bottom: 2px; }
.dl-apk .d { color: var(--ink-2); font-size: var(--fs-sm); }
.dl-badge-soon {
  display: inline-block; margin-left: 6px;
  padding: 1px 8px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: var(--fs-xs); font-weight: 800; vertical-align: middle;
}

.dl-foot {
  text-align: center; color: var(--muted);
  font-size: var(--fs-xs); margin-top: 30px;
}
