:root {
  --prabhu-gold: #b58a43;
  --prabhu-gold-soft: #f8f0df;
  --prabhu-ink: #1d1b18;
  --prabhu-muted: #756f65;
  --prabhu-border: #e8dfcf;
}
.prabhu-dashboard {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 44px;
  color: var(--prabhu-ink);
  font-family: inherit;
}
.prabhu-header, .prabhu-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.prabhu-eyebrow, .prabhu-pill {
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
}
.prabhu-eyebrow { color: var(--prabhu-gold); margin: 0 0 10px; }
.prabhu-header h1 { margin: 0; font-size: clamp(28px, 5vw, 46px); line-height: 1.1; }
.prabhu-muted { color: var(--prabhu-muted); }
.prabhu-logo-mark {
  width: 52px; height: 52px; border-radius: 18px;
  display: grid; place-items: center; background: var(--prabhu-gold-soft);
  font-weight: 800; color: var(--prabhu-gold);
}
.prabhu-hero {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid var(--prabhu-border);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf8, var(--prabhu-gold-soft));
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.prabhu-hero h2 { margin: 12px 0 8px; font-size: clamp(24px, 4vw, 34px); }
.prabhu-hero p { margin: 0; color: var(--prabhu-muted); }
.prabhu-pill {
  display: inline-block; padding: 7px 10px; border-radius: 999px;
  background: #fff; color: var(--prabhu-gold);
}
.prabhu-hero-symbol { font-size: 36px; color: var(--prabhu-gold); }
.prabhu-section { margin: 28px 0; }
.prabhu-section-heading h2 { margin: 0 0 14px; font-size: 21px; }
.prabhu-action-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
.prabhu-action-card {
  min-height: 126px; padding: 20px; border: 1px solid var(--prabhu-border);
  border-radius: 20px; background: #fff; text-decoration: none !important;
  display: flex; flex-direction: column; gap: 7px; color: var(--prabhu-ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.prabhu-action-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(50,35,10,.08); }
.prabhu-action-card strong { font-size: 17px; }
.prabhu-action-card span:last-child { font-size: 13px; color: var(--prabhu-muted); }
.prabhu-icon { color: var(--prabhu-gold); font-size: 23px; font-weight: 800; }
.prabhu-checklist, .prabhu-notice {
  border: 1px solid var(--prabhu-border); border-radius: 18px; overflow: hidden;
}
.prabhu-check-row { display: flex; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--prabhu-border); }
.prabhu-check-row:last-child { border-bottom: 0; }
.prabhu-check-row span:first-child { color: var(--prabhu-gold); font-weight: 800; }
.prabhu-notice { padding: 18px; background: #fffaf0; margin-top: 22px; }
.prabhu-notice p { margin: 8px 0 0; color: var(--prabhu-muted); font-size: 14px; line-height: 1.6; }
.prabhu-login-required { margin: 20px auto; padding: 24px; border: 1px solid var(--prabhu-border); border-radius: 18px; background: var(--prabhu-gold-soft); }
@media (max-width: 560px) {
  .prabhu-dashboard { padding: 22px 14px 36px; }
  .prabhu-header { align-items: flex-start; }
  .prabhu-hero { padding: 22px; }
  .prabhu-action-grid { grid-template-columns: 1fr; }
  .prabhu-action-card { min-height: 100px; }
}
