* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);

    background:
        radial-gradient(circle at 18% 12%, rgba(255,91,189,0.08), transparent 45%),
        radial-gradient(circle at 65% 10%, rgba(123,108,255,0.18), transparent 50%),
        radial-gradient(circle at 55% 70%, rgba(5,10,30,0.75), transparent 60%),
        linear-gradient(180deg, #050714 0%, #070b18 60%, #040513 100%);
}

html {
    scroll-behavior: smooth;
}

.main {
    scroll-behavior: smooth;
}


.dashboard {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   ABOUT / CTA – TYPOGRAPHY & MICRO UX
   ========================================================= */

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    font-size: 1.1rem;
    opacity: 0.85;
}

.card p,
.card li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card .btn {
    margin-top: 24px;
}

/* =========================================================
   ABOUT PAGE – TYPOGRAPHY TUNING
   ========================================================= */

/* Scope ONLY about page */
body[data-page="about"] {
    --about-text-size: 0.95rem;
    --about-line-height: 1.6;
}

/* Paragraphs */
body[data-page="about"] p {
    font-size: var(--about-text-size);
    line-height: var(--about-line-height);
    color: var(--text-secondary);
}

/* Lists */
body[data-page="about"] li {
    font-size: var(--about-text-size);
    line-height: var(--about-line-height);
    color: var(--text-secondary);
}

/* Reduce visual weight inside cards */
body[data-page="about"] .card p,
body[data-page="about"] .card li {
    font-weight: 400;
}

/* Keep headings strong */
body[data-page="about"] h2,
body[data-page="about"] h3,
body[data-page="about"] h4 {
    font-weight: 600;
}


