body {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
     background: #f7f9fa;
     color: #222;
}

.dashboard {
     max-width: 1100px;
     margin: 0 auto;
}

.dash-header {
     border-bottom: 1px solid #ddd;
     margin-bottom: 1.25rem;
     padding-bottom: .75rem;
}

.dash-header h1 {
     margin: 0;
     font-size: 1.9rem;
     display: flex;
     align-items: center;
     gap: .6rem;
}

.badge {
     background: #0A7C86;
     color: #fff;
     font-size: .75rem;
     padding: .25rem .5rem;
     border-radius: .4rem;
}

.user-meta {
     margin-top: .5rem;
     font-size: .9rem;
     color: #444;
}

.metrics {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
     gap: 1rem;
     margin-bottom: 2rem;
}

.metric {
     background: #fff;
     border: 1px solid #e2e6e9;
     border-radius: 8px;
     padding: 1rem;
     text-align: center;
     box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.metric-value {
     font-size: 1.8rem;
     font-weight: 600;
     color: #0A7C86;
}

.metric-label {
     font-size: .8rem;
     letter-spacing: .05em;
     text-transform: uppercase;
     margin-top: .25rem;
     color: #555;
}

.quick-links,
.roadmap,
.getting-started {
     background: #fff;
     border: 1px solid #e2e6e9;
     border-radius: 8px;
     padding: 1rem 1.25rem;
     margin-bottom: 1.5rem;
     box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.quick-links h2,
.roadmap h2,
.getting-started h2 {
     font-size: 1.15rem;
     margin: 0 0 .75rem;
     color: #0A7C86;
}

.quick-links ul,
.roadmap ul {
     list-style: none;
     padding: 0;
     margin: 0;
}

.quick-links li,
.roadmap li {
     padding: .4rem 0;
     border-bottom: 1px solid #eee;
}

.quick-links li:last-child,
.roadmap li:last-child {
     border-bottom: none;
}

.quick-links a {
     color: #0A7C86;
     text-decoration: none;
     font-weight: 500;
}

.quick-links a:hover {
     text-decoration: underline;
}

.anon-callout {
     background: #fffbe6;
     padding: .6rem .75rem;
     border: 1px solid #f0e2a2;
     border-radius: 6px;
     display: inline-block;
}

@media (max-width:640px) {
     .metrics {
          grid-template-columns: repeat(2, 1fr);
     }
}