/* ==========================================
   LunarStar Growth Dashboard
   Day counter + stats + AI insight
========================================== */

.growth-dashboard {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}

/* Welcome */
.gd-welcome {
    margin-bottom: 32px;
}

.gd-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 176, 82, 0.6);
    margin: 0 0 8px;
}

.gd-day {
    font-size: 48px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1;
}

.gd-day-num {
    font-weight: 700;
    color: #D4B052;
}

/* Stats Row */
.gd-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    padding: 24px;
    background: rgba(20, 22, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.gd-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gd-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.gd-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gd-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
}

/* Insight Card */
.gd-insight-card {
    background: rgba(212, 176, 82, 0.04);
    border: 1px solid rgba(212, 176, 82, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 32px;
    text-align: center;
}

.gd-insight-icon {
    font-size: 20px;
    color: #D4B052;
    margin-bottom: 12px;
}

.gd-insight-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212, 176, 82, 0.5);
    margin: 0 0 8px;
}

.gd-insight-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.gd-insight-value strong {
    color: #D4B052;
    font-weight: 600;
}

.gd-insight-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 10px 0 0;
}

/* Actions */
.gd-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gd-btn-primary {
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.2), rgba(212, 176, 82, 0.08));
    border: 1px solid rgba(212, 176, 82, 0.3);
    color: #D4B052;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.35s var(--ease-standard), transform 0.35s var(--ease-standard);
}

.gd-btn-primary:hover {
    background: linear-gradient(135deg, rgba(212, 176, 82, 0.3), rgba(212, 176, 82, 0.12));
    transform: translateY(-2px);
}

.gd-btn-ghost {
    padding: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s var(--ease-standard);
}

.gd-btn-ghost:hover {
    color: rgba(255, 255, 255, 0.55);
}
