/* ============================================
   LMS Home Approach Montessori — Design System
   Earth-tone palette, calm, minimalist
   ============================================ */

:root {
  /* === AKAR SEMESTA MONTESSORI BRAND PALETTE — RED DOMINANT === */

  /* Primer (Primary) — coral red adalah identitas brand */
  --coral: #E37865;            /* primer aksen utama */
  --coral-dark: #C9614F;       /* hover state */
  --coral-deep: #B14A38;       /* deep red emphasis */
  --coral-soft: #F2A99A;       /* soft coral */
  --coral-tint: #FAE0DA;       /* tint background */

  --olive: #B8B89F;            /* olive lebih muted (minor accent) */
  --olive-dark: #8C9173;       /* darker olive */
  --olive-soft: #D4D4BC;       /* lighter olive */

  --beige: #E8DCC9;            /* warmer beige */
  --beige-soft: #F5EBD8;       /* very light warm beige */

  /* Sekunder (Secondary) */
  --forest: #2F3D2A;
  --mint-light: #BFDED5;
  --mint: #9FCFC4;
  --teal: #5C8083;
  --mustard: #E5B842;

  /* Surface — warmer, slightly red-tinted */
  --bg: #FBF5EB;               /* warm cream with red undertone */
  --bg-soft: #FEFAF2;
  --surface: #FFFFFF;
  --divider: #EFE0CC;
  --white: #FFFFFF;

  /* Ink (text) */
  --ink: #2D2D2D;
  --ink-soft: #4A4A4A;
  --muted: #6B7280;
  --muted-light: #9CA3AF;

  /* === BACKWARDS-COMPAT ALIASES === */
  /* (semua kelas yang masih pakai --sage / --wood / --clay / --sand otomatis ke palet baru) */
  --sage: var(--olive);
  --sage-dark: var(--olive-dark);
  --sage-soft: var(--olive-soft);
  --sand: var(--beige);
  --beige-light: var(--bg-soft);
  --wood: var(--olive);          /* wood tone digantikan olive */
  --wood-dark: var(--olive-dark);
  --clay: var(--coral);          /* clay digantikan coral untuk aksen */
  --clay-soft: var(--coral-soft);
  --green-success: var(--olive-dark);
  --amber: var(--mustard);
  --red-soft: var(--coral-dark);

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Type — Lexend untuk seluruh teks (dirancang untuk meningkatkan kecepatan baca) */
  --font-serif: 'Lexend', 'Fraunces', Georgia, serif;
  --font-sans: 'Lexend', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(44, 44, 44, 0.04), 0 1px 3px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 2px 8px rgba(44, 44, 44, 0.06), 0 4px 16px rgba(44, 44, 44, 0.04);
  --shadow-lg: 0 8px 24px rgba(44, 44, 44, 0.08), 0 16px 48px rgba(44, 44, 44, 0.06);

  /* Layout */
  --sidebar-w: 240px;
  --header-h: 64px;
  --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--clay); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--clay-soft); }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--ink); line-height: 1.25; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--coral-deep); }
h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--coral-dark); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); }

/* ============ UTILITIES ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-5); }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.hidden { display: none !important; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--divider);
}
.btn-secondary:hover { background: var(--beige-light); border-color: var(--wood); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}
.btn-ghost:hover { background: var(--beige-light); color: var(--ink); }
.btn-clay {
  background: var(--clay);
  color: var(--white);
}
.btn-clay:hover { background: var(--clay-soft); color: var(--white); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
}
.card-flat {
  background: var(--beige-light);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid var(--divider);
}
.card-hover { transition: all 0.2s ease; cursor: pointer; }
.card-hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============ BADGES / PILLS ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--beige-light);
  color: var(--ink-soft);
}
.pill-sage { background: rgba(138, 154, 91, 0.15); color: var(--sage-dark); }
.pill-wood { background: rgba(176, 137, 104, 0.18); color: var(--wood-dark); }
.pill-clay { background: rgba(160, 82, 45, 0.15); color: var(--clay); }
.pill-sand { background: var(--sand); color: var(--wood-dark); }
.pill-amber { background: rgba(212, 166, 86, 0.18); color: #8B6F2A; }

/* ============ STATUS PILLS (Montessori) ============ */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
}
.status-introduced { background: var(--sand); color: var(--wood-dark); }
.status-working { background: rgba(160, 82, 45, 0.15); color: var(--clay); }
.status-mastered { background: rgba(138, 154, 91, 0.18); color: var(--sage-dark); }
.status-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

/* ============ NAVBAR (Landing) ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 235, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.brand-mark img, .brand-mark svg { width: 100%; height: 100%; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

/* ============ HERO ============ */
.hero {
  padding: var(--sp-8) var(--sp-5);
  background:
    radial-gradient(circle at 15% 20%, rgba(227, 120, 101, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(177, 74, 56, 0.14) 0%, transparent 50%),
    var(--bg);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.hero h1 { font-size: 3.25rem; line-height: 1.1; }
.hero-tagline {
  display: inline-block;
  background: rgba(227, 120, 101, 0.16);
  color: var(--coral-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); margin: var(--sp-4) 0; line-height: 1.65; }
.hero-cta { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
.hero-trust {
  margin-top: var(--sp-6);
  display: flex; gap: var(--sp-5); align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--muted);
}
.hero-trust-item { display: flex; align-items: center; gap: var(--sp-2); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sand), var(--beige-light));
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Mock device frame */
.phone-frame {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 8px solid var(--ink);
  overflow: hidden;
  position: relative;
}
.phone-screen {
  height: 100%;
  background: var(--beige-light);
  display: flex;
  flex-direction: column;
}
.phone-status {
  height: 30px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: white;
  font-size: 0.7rem;
}
.phone-content { padding: var(--sp-4); flex: 1; overflow: hidden; }

/* ============ SECTIONS ============ */
.section { padding: var(--sp-8) var(--sp-5); }
.section-tight { padding: var(--sp-7) var(--sp-5); }
.section-title {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: var(--sp-3);
}
.section-title h2 { margin-bottom: var(--sp-3); }
.section-title p { max-width: 620px; margin: 0 auto; color: var(--ink-soft); }

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  transition: all 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage-soft); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(227, 120, 101, 0.12);
  display: grid; place-items: center;
  color: var(--coral-dark);
  margin-bottom: var(--sp-4);
}
.feature-card h4 { margin-bottom: var(--sp-2); }
.feature-card p { font-size: 0.95rem; }

/* ============ AREAS GRID (Montessori 5 areas) ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
  max-width: var(--max-w);
  margin: 0 auto;
}
.area-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid var(--divider);
  background: var(--white);
}
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.area-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.area-card[data-area="practical"] .area-icon { background: rgba(140, 145, 115, 0.18); color: var(--olive-dark); }
.area-card[data-area="sensorial"] .area-icon { background: rgba(227, 120, 101, 0.18); color: var(--coral-dark); }
.area-card[data-area="language"] .area-icon { background: rgba(229, 184, 66, 0.22); color: #8B6F2A; }
.area-card[data-area="math"] .area-icon { background: rgba(92, 128, 131, 0.18); color: var(--teal); }
.area-card[data-area="culture"] .area-icon { background: rgba(159, 207, 196, 0.30); color: #2F7066; }

.area-card h4 { font-size: 1.1rem; }
.area-card p { font-size: 0.9rem; }
.area-progress { font-size: 0.8rem; color: var(--muted); }
.area-progress-bar {
  height: 6px; background: var(--beige); border-radius: var(--r-pill);
  overflow: hidden; margin-top: 4px;
}
.area-progress-bar > span {
  display: block; height: 100%; background: var(--sage); border-radius: var(--r-pill);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  display: flex; flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}
.price-card.featured {
  border-color: var(--coral);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(227, 120, 101, 0.06) 0%, var(--white) 40%);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.price-tier { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.price-amount { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 600; color: var(--ink); }
.price-amount small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.price-features li {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: 0.92rem; color: var(--ink-soft);
}
.price-features li::before {
  content: '✓'; color: var(--coral); font-weight: bold; flex-shrink: 0;
}

/* ============ MENTOR / TESTIMONIAL ============ */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
.mentor-card {
  background: var(--white);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  text-align: center;
}
.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-3);
}
.avatar-sm { width: 40px; height: 40px; font-size: 1rem; }
.avatar-md { width: 56px; height: 56px; font-size: 1.2rem; }
.avatar-lg { width: 96px; height: 96px; font-size: 2rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--divider);
  overflow: hidden;
}
.faq-q {
  padding: var(--sp-4) var(--sp-5);
  width: 100%;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; color: var(--ink); font-family: var(--font-sans);
  background: none;
}
.faq-q:hover { background: var(--beige-light); }
.faq-q .arrow { transition: transform 0.2s ease; color: var(--muted); }
.faq-item.open .faq-q .arrow { transform: rotate(90deg); }
.faq-a {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: #2C2C2C;
  color: #B8B8B8;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  margin-top: var(--sp-8);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-6);
}
.footer-inner h5 { color: var(--white); font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--sp-3); }
.footer-inner ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-inner a { color: #B8B8B8; font-size: 0.92rem; }
.footer-inner a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: var(--sp-6) auto 0;
  padding-top: var(--sp-4);
  border-top: 1px solid #3F3F3F;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3);
  font-size: 0.85rem;
  color: #888;
}

/* ============ AUTH ============ */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-side {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
  top: -200px; right: -200px;
}
.auth-side h2 { color: var(--white); font-size: 2.5rem; line-height: 1.1; }
.auth-side p { color: rgba(255,255,255,0.85); }
.auth-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.auth-form-wrap {
  padding: var(--sp-7) var(--sp-6);
  display: flex; align-items: center; justify-content: center;
  background: var(--beige);
}
.auth-form { width: 100%; max-width: 400px; }
.auth-form h3 { margin-bottom: var(--sp-2); }
.auth-form .lead { color: var(--ink-soft); margin-bottom: var(--sp-5); }

.role-picker {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2);
  background: var(--beige-light);
  padding: 4px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
}
.role-picker button {
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  transition: all 0.15s ease;
}
.role-picker button.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ============ FORM ============ */
.form-group { margin-bottom: var(--sp-4); }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--divider);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 91, 0.18);
}
.form-textarea { resize: vertical; min-height: 96px; }
.form-help { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.divider-text {
  display: flex; align-items: center; gap: var(--sp-3);
  margin: var(--sp-5) 0;
  color: var(--muted); font-size: 0.85rem;
}
.divider-text::before, .divider-text::after {
  content: ''; flex: 1; height: 1px; background: var(--divider);
}

.sso-row { display: flex; gap: var(--sp-2); }
.sso-btn {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--divider);
  border-radius: var(--r-md);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  font-weight: 500; font-size: 0.92rem;
  color: var(--ink);
  transition: all 0.15s ease;
}
.sso-btn:hover { border-color: var(--wood); background: var(--beige-light); }

/* ============ APP LAYOUT ============ */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--white);
  border-right: 1px solid var(--divider);
  padding: var(--sp-4);
  display: flex; flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-brand {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-5);
  font-family: var(--font-serif);
  font-weight: 600; font-size: 1.05rem;
}
.sidebar-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin: var(--sp-4) var(--sp-3) var(--sp-2);
  font-weight: 600;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 12px;
  border-radius: var(--r-md);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: all 0.15s ease;
}
.nav-link:hover { background: var(--beige-light); color: var(--ink); }
.nav-link.active { background: var(--coral); color: var(--white); }
.nav-link.active:hover { background: var(--coral-dark); color: var(--white); }
.nav-link svg { flex-shrink: 0; }

.sidebar-bottom { margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--divider); }
.sidebar-user {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3); border-radius: var(--r-md);
  background: var(--beige-light);
  cursor: pointer;
  transition: all 0.15s ease;
}
.sidebar-user:hover { background: var(--sand); }
.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-info .name { font-size: 0.9rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-info .role { font-size: 0.75rem; color: var(--muted); }

/* App Main */
.app-main {
  background: var(--bg);
  min-height: 100vh;
}
.topbar {
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  padding: 0 var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.topbar-left { display: flex; align-items: center; gap: var(--sp-3); }
.topbar h1 { font-size: 1.35rem; font-family: var(--font-sans); font-weight: 600; }
.topbar-actions { display: flex; align-items: center; gap: var(--sp-3); }
.iconbtn {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--beige-light);
  display: grid; place-items: center;
  color: var(--ink-soft);
  position: relative;
}
.iconbtn:hover { background: var(--sand); color: var(--ink); }
.iconbtn .dot { position: absolute; top: 6px; right: 7px; width: 8px; height: 8px; background: var(--coral); border-radius: 50%; }

.lang-toggle {
  display: flex;
  background: var(--beige-light);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.lang-toggle button.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }

.app-content {
  padding: var(--sp-6);
  max-width: 1400px;
}

/* Mobile menu trigger */
.menu-trigger {
  display: none;
  background: none;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  align-items: center; justify-content: center;
  color: var(--ink);
}

/* ============ DASHBOARD WIDGETS ============ */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-5);
}

.daily-checklist { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-5); border: 1px solid var(--divider); }
.checklist-item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--beige-light);
  margin-bottom: var(--sp-3);
  transition: all 0.15s ease;
}
.checklist-item:hover { background: var(--sand); }
.checklist-item.done { opacity: 0.55; }
.checklist-item.done .checklist-text .title { text-decoration: line-through; }
.checklist-check {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--divider);
  background: var(--white);
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.checklist-check.checked { background: var(--coral); border-color: var(--coral); color: var(--white); }
.checklist-text { flex: 1; min-width: 0; }
.checklist-text .title { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.checklist-text .meta { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* Progress radial (CSS-only) */
.radial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--sp-4);
}
.radial {
  --pct: 0;
  --color: var(--sage);
  width: 100%;
  aspect-ratio: 1;
  max-width: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--color) calc(var(--pct) * 1%), var(--beige) 0);
  display: grid; place-items: center;
  position: relative;
  margin: 0 auto;
}
.radial::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: var(--white);
  border-radius: 50%;
}
.radial > span {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
}
.radial-label { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* Heatmap */
.heatmap {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 4px;
  align-items: center;
}
.heatmap-row-label { font-size: 0.82rem; color: var(--ink-soft); }
.heatmap-cell {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: var(--beige);
  position: relative;
  cursor: pointer;
  transition: transform 0.1s ease;
}
.heatmap-cell:hover { transform: scale(1.08); }
.heatmap-cell[data-intensity="0"] { background: var(--bg-soft); }
.heatmap-cell[data-intensity="1"] { background: rgba(140, 145, 115, 0.30); }
.heatmap-cell[data-intensity="2"] { background: rgba(140, 145, 115, 0.55); }
.heatmap-cell[data-intensity="3"] { background: rgba(140, 145, 115, 0.80); }
.heatmap-cell[data-intensity="4"] { background: var(--olive); }
.heatmap-header {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.72rem; color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Timeline */
.timeline { position: relative; padding-left: var(--sp-5); }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--divider);
}
.timeline-item { position: relative; margin-bottom: var(--sp-4); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--divider);
}
.timeline-item .ts { font-size: 0.78rem; color: var(--muted); }
.timeline-item .desc { font-size: 0.92rem; color: var(--ink); margin-top: 2px; }

/* Material Detail */
.material-hero {
  background: linear-gradient(135deg, var(--sand), var(--beige-light));
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.video-placeholder {
  background: var(--ink);
  border-radius: var(--r-md);
  aspect-ratio: 16/9;
  display: grid; place-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(176, 137, 104, 0.4) 0%, transparent 60%);
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  color: var(--clay);
  position: relative;
  z-index: 1;
  transition: transform 0.18s ease;
}
.video-placeholder:hover .play-btn { transform: scale(1.08); }

.steps-list {
  list-style: none;
  counter-reset: step;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.steps-list li {
  counter-increment: step;
  display: flex; gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--beige-light);
  border-radius: var(--r-md);
}
.steps-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Observation form sliders */
.slider-group { margin-bottom: var(--sp-4); }
.slider-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.slider-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--coral-dark);
  width: 40px;
  text-align: center;
}
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: var(--r-pill);
  background: var(--beige);
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  border: 3px solid var(--white);
}
.slider-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* Toggle group */
.toggle-group {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
}
.toggle-chip {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--beige-light);
  color: var(--ink-soft);
  border: 1.5px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s ease;
}
.toggle-chip:hover { background: var(--sand); }
.toggle-chip.active { background: var(--coral); color: var(--white); border-color: var(--coral); }

/* Portfolio gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--sand);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .gallery-bg {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 2rem;
  color: var(--wood);
}
.gallery-item .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.78rem;
}

/* Forum thread */
.forum-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.forum-thread {
  background: var(--white);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--divider);
  display: flex; gap: var(--sp-3);
  transition: all 0.15s ease;
  cursor: pointer;
}
.forum-thread:hover { border-color: var(--sage-soft); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.forum-thread .thread-body { flex: 1; min-width: 0; }
.forum-thread .thread-title { font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.forum-thread .thread-snippet { font-size: 0.88rem; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.forum-thread .thread-meta { display: flex; gap: var(--sp-3); font-size: 0.78rem; color: var(--muted); margin-top: 6px; align-items: center; flex-wrap: wrap; }

/* Mentor review queue */
.review-card {
  background: var(--white);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
  margin-bottom: var(--sp-3);
}
.review-header {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.review-header .meta { flex: 1; }
.review-header .meta .name { font-weight: 600; color: var(--ink); }
.review-header .meta .sub { font-size: 0.82rem; color: var(--muted); }
.review-meta-row { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-3); flex-wrap: wrap; }
.review-meta-row .info {
  background: var(--beige-light);
  padding: 6px 12px;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.review-meta-row .info b { color: var(--ink); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(44, 44, 44, 0.55);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: var(--sp-4);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.modal h3 { margin-bottom: var(--sp-3); }
.modal-actions { display: flex; gap: var(--sp-2); justify-content: flex-end; margin-top: var(--sp-5); }

/* Toast */
.toast {
  position: fixed;
  bottom: var(--sp-5); right: var(--sp-5);
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.9rem;
  z-index: 300;
  transform: translateY(100px); opacity: 0;
  transition: all 0.25s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* KPI / stat card */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.stat-card {
  background: var(--white);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
}
.stat-card .label { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.stat-card .value { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--ink); margin-top: 4px; }
.stat-card .delta { font-size: 0.82rem; margin-top: 4px; }
.stat-card .delta.up { color: var(--green-success); }
.stat-card .delta.down { color: var(--red-soft); }

/* Empty state */
.empty {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  color: var(--muted);
}
.empty-icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: var(--beige-light);
  display: grid; place-items: center;
  color: var(--sand);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-trigger { display: grid; }
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    left: -100%;
    width: 80%;
    max-width: 320px;
    z-index: 150;
    transition: left 0.25s ease;
    box-shadow: var(--shadow-lg);
  }
  .sidebar.open { left: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: var(--sp-7) var(--sp-4); }
  .hero { padding: var(--sp-6) var(--sp-4); }
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .topbar { padding: 0 var(--sp-4); }
  .app-content { padding: var(--sp-4); }
}

/* ============ CHECKOUT ============ */
.checkout-shell {
  min-height: 100vh;
  background: var(--bg);
}
.checkout-header {
  height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--sp-5);
}
.checkout-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-5);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.region-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-bottom: var(--sp-5);
  width: fit-content;
}
.region-tabs button {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  transition: all 0.15s ease;
}
.region-tabs button.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.pay-cat {
  background: var(--surface);
  border: 1.5px solid var(--divider);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
  cursor: pointer;
  transition: all 0.15s ease;
}
.pay-cat:hover { border-color: var(--coral); }
.pay-cat.open { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(227, 120, 101, 0.12); }
.pay-cat-head {
  display: flex; align-items: center; gap: var(--sp-3);
}
.pay-cat-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--divider);
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}
.pay-cat.open .pay-cat-radio {
  border-color: var(--coral);
}
.pay-cat.open .pay-cat-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--coral);
}
.pay-cat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pay-cat-text { flex: 1; min-width: 0; }
.pay-cat-text .name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.pay-cat-text .desc { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

.pay-cat-body {
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--divider);
  display: none;
}
.pay-cat.open .pay-cat-body { display: block; }

.pay-brands {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pay-brand {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1.5px solid var(--divider);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  min-height: 40px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  gap: 6px;
}
.pay-brand:hover { border-color: var(--coral); background: var(--bg-soft); }
.pay-brand.active { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(227, 120, 101, 0.18); background: var(--surface); }
.pay-brand .label { font-size: 0.85rem; }

.summary-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: sticky;
  top: var(--sp-5);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.summary-row.total {
  border-top: 2px solid var(--divider);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.promo-row {
  display: flex; gap: 8px;
  margin: var(--sp-3) 0;
}
.promo-row input { flex: 1; }
.promo-applied {
  display: flex; align-items: center; gap: 6px;
  background: rgba(140, 145, 115, 0.15);
  color: var(--olive-dark);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  margin: var(--sp-3) 0;
}

.secure-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft);
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: var(--sp-3);
}
.gateway-row {
  display: flex; align-items: center; gap: 12px;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--divider);
  margin-top: var(--sp-3);
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* Brand chip styles for payment provider names (visual placeholder) */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.chip-qris { background: #DD0E2A; }
.chip-gopay { background: #00AED6; }
.chip-ovo { background: #4C2A86; }
.chip-dana { background: #1183E2; }
.chip-shopee { background: #EE4D2D; }
.chip-linkaja { background: #E8252E; }
.chip-bca { background: #0061A8; }
.chip-mandiri { background: #003F7E; }
.chip-bni { background: #ED7E1E; }
.chip-bri { background: #00529C; }
.chip-permata { background: #1D6F42; }
.chip-visa { background: #1A1F71; }
.chip-mc { background: #EB001B; }
.chip-jcb { background: #0E4C96; }
.chip-amex { background: #2E77BB; }
.chip-akulaku { background: #FF425C; }
.chip-kredivo { background: #1B70AB; }
.chip-alfamart { background: #E20A17; }
.chip-indomaret { background: #FFD300; color: #2D2D2D; }
.chip-stripe { background: #635BFF; }
.chip-paypal { background: #003087; }
.chip-applepay { background: #000000; }
.chip-googlepay { background: #4285F4; }
.chip-midtrans { background: #1B6098; }
.chip-xendit { background: #5848C5; }

/* Plan toggle */
.plan-billing-toggle {
  display: flex;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 2px;
  margin-bottom: var(--sp-3);
  width: fit-content;
}
.plan-billing-toggle button {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.plan-billing-toggle button.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 880px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

/* Scrollbar (subtle) */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--divider); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--muted-light); }
