/* Kelas Kreator. Palette from the Ekraf 2024 mark: sky blue #6fb6e2, charcoal #2c2c2e. */
:root {
  --bg: #f3f8fc;
  --bg-rgb: 243, 248, 252;
  --surface: #dcedf8;
  --line: #c6dff0;
  --line-strong: #8fb9d6;
  --ink: #2c2c2e;
  --body: #3d4750;
  --muted: #587082;
  --accent: #6fb6e2;
  --accent-text: #1d6499;
  --btn-bg: #2c2c2e;
  --btn-ink: #ffffff;
  --btn-hover: #444447;
  --plate: #6fb6e2;
  --radius: 6px;
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --text: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #0f1a22;
  --bg-rgb: 15, 26, 34;
  --surface: #162530;
  --line: #23384a;
  --line-strong: #3f5a70;
  --ink: #eef4f8;
  --body: #cfdbe4;
  --muted: #93a9b8;
  --accent-text: #7cc0e8;
  --btn-bg: #6fb6e2;
  --btn-ink: #0f1a22;
  --btn-hover: #8cc5e9;
  color-scheme: dark;
}
/* sky-blue plates (hero, module banner): same in both themes */
.hero, .banner {
  --ink: #2c2c2e; --body: #2c3e4b; --muted: #24384a; --line-strong: #2c2c2e;
  --btn-bg: #2c2c2e; --btn-ink: #ffffff; --btn-hover: #444447; --accent-text: #1b3a4f;
  background: var(--plate);
  color: var(--ink);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.55 var(--text);
}
img { max-width: 100%; display: block; }
a { color: var(--accent-text); }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }
h1, h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(var(--bg-rgb), 0.84);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--ink); text-decoration: none;
}
.nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav nav a { display: inline-block; padding: 0.75rem 0; color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.nav nav a[aria-current="page"] { color: var(--ink); }
.tema { background: none; border: 0; padding: 0; margin: 0; width: 44px; height: 44px; display: grid; place-items: center; color: var(--muted); cursor: pointer; border-radius: var(--radius); }
.tema svg { grid-area: 1 / 1; width: 22px; height: 22px; transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out); }
.tema .ic-moon { opacity: 0; transform: rotate(-90deg) scale(0.6); }
:root[data-theme="dark"] .tema .ic-sun { opacity: 0; transform: rotate(90deg) scale(0.6); }
:root[data-theme="dark"] .tema .ic-moon { opacity: 1; transform: none; }
.tema:active svg { transform: scale(0.9); }
/* theme switch: colors cross-fade for one beat (class added by progress.js on toggle) */
html.tema-anim *:not(svg):not(svg *) { transition: background-color 260ms var(--ease-out), color 260ms var(--ease-out), border-color 260ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .nav nav a:hover, .tema:hover { color: var(--ink); } }
@media (max-width: 480px) { .brand { font-size: 1.25rem; } .nav ul { gap: 0.9rem; } .nav nav a { font-size: 0.9rem; } .tema { width: 40px; } }

/* buttons */
.btn {
  display: inline-block; padding: 0.8rem 1.25rem;
  border-radius: var(--radius); border: 1px solid transparent;
  font: inherit; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--btn-bg); color: var(--btn-ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--btn-hover); }
  .btn-secondary:hover { border-color: var(--ink); }
}

/* hero: text left on the sky-blue field, photo right */
.hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(78vh, 680px); min-height: min(78dvh, 680px);
  overflow: hidden;
}
.hero > img { grid-column: 2; grid-row: 1; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.hero .wrap {
  grid-column: 1; grid-row: 1; align-self: center; width: 100%; max-width: none; margin: 0;
  padding: 3.5rem 2rem 3.5rem max(1.25rem, calc((100vw - 72rem) / 2 + 1.25rem));
}
.hero .strip { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.75rem, 5vw, 4.25rem); line-height: 0.92; margin: 0 0 1.25rem; max-width: 11em; }
.hero .sub { font-size: 1.15rem; color: var(--body); max-width: 30rem; margin: 0 0 1.75rem; }
@media (min-width: 701px) { .hero h1 br { display: none; } }
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0; }
@media (max-width: 900px) { .hero > img { object-position: 85% center; } }
@media (max-width: 700px) {
  .hero { display: block; min-height: 0; }
  .hero > img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-position: 60% 30%; }
  .hero .wrap { padding: 1.75rem 1.25rem 2.5rem; }
  .hero .strip { margin-bottom: 0.75rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero .sub { font-size: 1.05rem; margin-bottom: 1.25rem; }
}

/* sections */
main > section { padding: 4rem 0; border-top: 1px solid var(--line); }
main > section.hero { padding: 0; border-top: 0; }
main > section h2 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1; margin: 0 0 1.75rem; }
#tentang { background: var(--surface); }
.intro { color: var(--body); max-width: 40rem; margin-bottom: 1.75rem; }
.satu { max-width: 44rem; }
.satu p { color: var(--body); }
.dua { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.dua p { color: var(--body); max-width: 34rem; }
@media (max-width: 760px) { .dua { grid-template-columns: 1fr; gap: 1.5rem; } }

/* katalog */
.katalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kartu { display: block; color: inherit; text-decoration: none; }
.kartu .img { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.kartu img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .kartu:hover img { transform: scale(1.03); } }
.kartu h3 { margin: 0.9rem 0 0.2rem; line-height: 1.25; }
.kartu h3 .ic { color: var(--muted); margin-left: 0.3rem; transition: transform 200ms var(--ease-out), color 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .kartu:hover h3 .ic { transform: translateX(4px); color: var(--accent-text); } }
.kartu p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.kartu [data-status]:not(:empty)::before { content: "· "; }
.kartu [data-status] { color: var(--accent-text); }
@media (max-width: 900px) {
  .katalog { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.75rem; }
  .kartu h3 { font-size: 1rem; margin-top: 0.6rem; }
  .kartu p { font-size: 0.85rem; }
}

/* langkah */
.langkah { list-style: none; margin: 0; padding: 0; max-width: 44rem; counter-reset: langkah; }
.langkah li {
  counter-increment: langkah; display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.5rem;
  padding: 1rem 0; border-top: 1px solid var(--line); color: var(--body);
}
.langkah li:last-child { border-bottom: 1px solid var(--line); }
.langkah li::before { content: counter(langkah); color: var(--muted); font-variant-numeric: tabular-nums; }

/* faq */
.faq { max-width: 44rem; }
.faq details { border-top: 1px solid var(--line); padding: 0.9rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; padding: 0.25rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; width: 1.25em; height: 1.25em; color: var(--muted); transition: transform 220ms var(--ease-out); }
.faq details[open] summary .ic { transform: rotate(180deg); }
.faq details p { margin: 0.75rem 0 0; color: var(--body); animation: faq-in 220ms var(--ease-out) both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }

/* footer */
footer { border-top: 1px solid var(--line); padding: 2.5rem 0 3rem; color: var(--muted); font-size: 0.9rem; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
footer p { margin: 0; }
footer a { color: inherit; text-decoration: none; margin-right: 1.25rem; }
footer a:last-child { margin-right: 0; }
@media (hover: hover) and (pointer: fine) { footer a:hover { color: var(--ink); } }

/* kurikulum */
.halaman { padding: 3.5rem 1.25rem 1rem; }
.halaman h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 0.95; margin: 0 0 1rem; }
.daftar { list-style: none; margin: 0; padding: 0; }
.daftar > li { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1.75rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.daftar > li:last-child { border-bottom: 1px solid var(--line); }
.daftar .img { display: block; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.daftar .img img { width: 100%; height: 100%; object-fit: cover; }
.daftar .meta { color: var(--muted); font-size: 0.9rem; margin: 0 0 0.35rem; }
.daftar .status { color: var(--accent-text); }
.daftar .status:not(:empty)::before { content: "· "; }
.daftar h2 { font-size: 1.85rem; line-height: 1; margin: 0 0 0.6rem; }
.daftar h2 a { color: var(--ink); text-decoration: none; }
.daftar .desc { color: var(--body); max-width: 40rem; margin: 0 0 1rem; }
.daftar ol { margin: 0; padding-left: 1.25rem; color: var(--muted); }
.daftar ol li { padding: 0.15rem 0; }
.daftar ol a { color: var(--muted); text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .daftar ol a:hover, .daftar h2 a:hover { color: var(--ink); } }
@media (max-width: 600px) { .daftar > li { grid-template-columns: 4.5rem 1fr; gap: 1rem; } }

/* modul: banner is a sky-blue plate, title left, cover right */
.banner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: min(56vh, 480px); min-height: min(56dvh, 480px);
  overflow: hidden;
}
.banner > img { grid-column: 2; grid-row: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.banner .wrap {
  grid-column: 1; grid-row: 1; align-self: center; width: 100%; max-width: none; margin: 0;
  padding: 3rem 2rem 3rem max(1.25rem, calc((100vw - 72rem) / 2 + 1.25rem));
}
.crumb { color: var(--muted); font-size: 0.95rem; margin: 0 0 0.75rem; }
.crumb a { color: inherit; text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .crumb a:hover { color: var(--ink); } }
.banner h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 0.95; margin: 0 0 1rem; max-width: 14ch; }
.banner .lead { font-size: 1.15rem; color: var(--body); max-width: 34rem; margin: 0; }
.banner .modul-materi { margin-top: 1.25rem; }
.banner .modul-materi .btn .ic { margin-right: 0.35rem; }
@media (max-width: 700px) {
  .banner { display: block; min-height: 0; }
  .banner > img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-position: center 40%; }
  .banner .wrap { padding: 1.75rem 1.25rem 2.25rem; }
}

.artikel { max-width: 44rem; padding: 2.5rem 0 0; }
.rencana-h { font-size: 1.1rem; font-family: var(--text); text-transform: none; font-weight: 600; color: var(--muted); margin: 0 0 0.5rem; }
.rencana { list-style: none; margin: 0 0 1rem; padding: 0; counter-reset: pel; }
.rencana li { counter-increment: pel; display: flex; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid var(--line); }
.rencana li:last-child { border-bottom: 1px solid var(--line); }
.rencana li::before { content: counter(pel); color: var(--muted); font-variant-numeric: tabular-nums; min-width: 1.25rem; }
.rencana a { color: var(--ink); text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .rencana a:hover { text-decoration: underline; text-underline-offset: 0.2em; } }

.pelajaran h2, .aktivitas h2 { font-size: 2rem; line-height: 1; margin: 3rem 0 1rem; padding-top: 2.25rem; border-top: 1px solid var(--line); scroll-margin-top: 5rem; }
.pelajaran h2 .num, .kuis legend .num { color: var(--accent-text); margin-right: 0.6rem; font-variant-numeric: tabular-nums; }
.pelajaran p, .aktivitas .ket, .aktivitas .brief p { font-size: 1.08rem; line-height: 1.65; color: var(--body); margin: 0 0 1.1rem; }
.pelajaran .latihan { border-top: 1px solid var(--line); padding-top: 0.9rem; margin-top: 1.5rem; }
.pelajaran .latihan .lbl { color: var(--muted); margin-right: 0.6rem; }

.selesai { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 3rem; padding: 1.75rem 0; border-top: 1px solid var(--line); }
.selesai .prog { flex: 1 1 18rem; margin: 0; color: var(--body); }
@keyframes pop { from { opacity: 0; transform: scale(0.5); } }
[data-status] .ic { margin-right: 0.2rem; animation: pop 220ms var(--ease-out) both; }
.pager { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0 4rem; border-top: 1px solid var(--line); }
.pager a { color: var(--ink); text-decoration: none; max-width: 48%; }
.pager a.next { text-align: right; margin-left: auto; }
.pager .k { display: flex; align-items: center; gap: 0.3rem; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.15rem; }
.pager a.next .k { justify-content: flex-end; }
.pager .k .ic { transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .pager a:hover .k .ic { transform: translateX(-4px); } .pager a.next:hover .k .ic { transform: translateX(4px); } }
@media (hover: hover) and (pointer: fine) { .pager a:hover { text-decoration: underline; text-underline-offset: 0.2em; } }
@media (max-width: 600px) {
  .pager { flex-direction: column; gap: 0; }
  .pager a { max-width: none; padding: 0.9rem 0; }
  .pager a.next { text-align: left; margin-left: 0; border-top: 1px solid var(--line); }
  .pager a.next .k { justify-content: flex-start; }
  .selesai .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .kartu img { transition: none; }
}

/* icons (Tabler, MIT) */
.ic { width: 1em; height: 1em; vertical-align: -0.15em; display: inline-block; }

/* motion: hero entrance once per visit, sections reveal as they arrive */
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }
@keyframes fade { from { opacity: 0; } }
.hero .wrap > *, .banner .wrap > * { animation: rise 520ms var(--ease-out) both; }
.hero .wrap > :nth-child(2), .banner .wrap > :nth-child(2) { animation-delay: 60ms; }
.hero .wrap > :nth-child(3), .banner .wrap > :nth-child(3) { animation-delay: 120ms; }
.hero .wrap > :nth-child(4) { animation-delay: 180ms; }
.hero > img, .banner > img { animation: fade 700ms var(--ease-out) both; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out); transition-delay: calc(var(--i, 0) * 55ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero .wrap > *, .banner .wrap > *, .hero > img, .banner > img, .faq details p, [data-status] .ic { animation: none; }
  .bar span { transition: none; }
  .reveal { transform: none; transition-duration: 200ms; transition-delay: 0s; }
  .tema svg, .faq summary .ic, .kartu h3 .ic, .pager .k .ic { transition: none; }
}

/* skip link */
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 20; background: var(--btn-bg); color: var(--btn-ink); padding: 0.6rem 1rem; border-radius: var(--radius); text-decoration: none; }
.skip:focus { top: 1rem; }

/* jadwal ledger */
.jadwal { list-style: none; margin: 0; padding: 0; max-width: 44rem; }
.jadwal li { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.jadwal li:last-child { border-bottom: 1px solid var(--line); }
.jadwal time { color: var(--muted); font-variant-numeric: tabular-nums; padding-top: 0.1rem; }
.jadwal h3 { margin: 0 0 0.2rem; }
.jadwal p { margin: 0; color: var(--body); }
@media (max-width: 600px) { .jadwal li { grid-template-columns: 1fr; gap: 0.25rem; } }

/* tabel penilaian */
.gulir { overflow-x: auto; }
.tabel { width: 100%; max-width: 56rem; border-collapse: collapse; font-size: 0.95rem; }
.tabel th, .tabel td { text-align: left; vertical-align: top; padding: 0.8rem 1.25rem 0.8rem 0; border-top: 1px solid var(--line); }
.tabel thead th { color: var(--muted); font-weight: 600; font-size: 0.85rem; border-top: 0; padding-top: 0; }
.tabel tbody th { font-weight: 600; color: var(--ink); width: 28%; }
.tabel td { color: var(--body); }
.tabel .num { text-align: right; padding-right: 0; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tabel .frek { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }
.tabel tfoot th, .tabel tfoot td { border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); color: var(--ink); }
.catatan { color: var(--muted); max-width: 44rem; margin: 1.25rem 0 0; font-size: 0.95rem; }
@media (max-width: 600px) { .tabel { font-size: 0.9rem; } .tabel tbody th { width: 34%; } .tabel th, .tabel td { padding-right: 0.75rem; } }

/* aktivitas: kuis dan setoran */
.rencana-akt { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }
.kuis fieldset { border: 0; margin: 1.75rem 0 0; padding: 0; min-width: 0; }
.kuis legend { font-weight: 600; padding: 0; margin: 0 0 0.5rem; }
.kuis label { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.7rem 0; border-top: 1px solid var(--line); cursor: pointer; color: var(--body); }
.kuis fieldset label:last-of-type { border-bottom: 1px solid var(--line); }
.kuis input[type="radio"] { margin: 0.3rem 0 0; flex: none; accent-color: var(--accent-text); }
.kuis label .ic { display: none; flex: none; margin: 0.25rem 0 0 auto; }
.kuis label.kunci { color: var(--ink); }
.kuis label.kunci .ic-benar { display: inline-block; color: var(--accent-text); animation: pop 220ms var(--ease-out) both; }
.kuis label.pilih:not(.kunci) { color: var(--muted); }
.kuis label.pilih:not(.kunci) .ic-salah { display: inline-block; color: var(--muted); }
.kuis .selesai-kuis label, .selesai-kuis label { cursor: default; }
.kuis .jelas { color: var(--muted); font-size: 0.95rem; margin: 0.6rem 0 0; animation: faq-in 220ms var(--ease-out) both; }
.kuis-akhir { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 1.5rem 0 0; }
.kuis-akhir .skor { color: var(--body); }
.setor { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; font-weight: 600; }
.setor input { width: 1.15rem; height: 1.15rem; margin: 0; flex: none; accent-color: var(--accent-text); }

/* halaman progres */
.ringkas { max-width: 44rem; margin: 0 0 2.5rem; padding: 1.25rem 0 0; border-top: 1px solid var(--line); }
.ringkas .nama { display: flex; align-items: baseline; gap: 0.75rem; margin: 0 0 1rem; color: var(--muted); }
.ringkas input { flex: 1 1 10rem; max-width: 20rem; font: inherit; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; padding: 0.25rem 0; }
.ringkas input:focus { outline: none; border-bottom-color: var(--accent-text); }
.ringkas .total { display: flex; align-items: baseline; gap: 1rem; margin: 0 0 0.35rem; }
.ringkas .angka { font-family: var(--display); font-weight: 700; font-size: 3rem; line-height: 1; font-variant-numeric: tabular-nums; }
.ringkas .ket { color: var(--body); }
.ringkas .waktu { margin: 0; color: var(--muted); font-size: 0.9rem; }
.bar-list { list-style: none; margin: 0; padding: 0; max-width: 44rem; }
.bar-list li { padding: 1rem 0; border-top: 1px solid var(--line); }
.bar-list li:last-child { border-bottom: 1px solid var(--line); }
.bar-h { display: flex; justify-content: space-between; gap: 1rem; margin: 0 0 0.6rem; }
.bar-h a { color: var(--ink); text-decoration: none; font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .bar-h a:hover { text-decoration: underline; text-underline-offset: 0.2em; } }
.bar-h .persen { color: var(--muted); font-variant-numeric: tabular-nums; }
.bar { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.bar span { display: block; height: 100%; width: 0; background: var(--accent-text); border-radius: 2px; transition: width 500ms var(--ease-out); }
.bar-list .rinci { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.9rem; }
.bar-list li.selesai-modul .persen { color: var(--accent-text); }
.reset { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 2.5rem 0 3rem; }
.reset .note { color: var(--muted); font-size: 0.95rem; }
