/* =========================================
   PROJECTS SECTION - TYPOGRAPHY
   Apple-Style Elegant Text
========================================= */

/* Section Title */
.projects-title {
    font-family: var(--proj-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: var(--proj-text-primary);

    padding: 100px 0 60px;
    margin: 0;

    /* Subtle glow */
    text-shadow: 0 0 60px rgba(138, 43, 226, 0.2);
}

.featured-case__eyebrow {
    margin: 0 0 10px;
    color: rgba(185, 131, 255, 0.94);
    font-family: var(--proj-font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.featured-case h3 {
    margin: 0;
    color: var(--proj-text-primary);
    font-family: var(--proj-font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1;
}

.featured-case__summary {
    max-width: 620px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--proj-font-body);
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.65;
}

.featured-case__proof {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.featured-case__proof li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--proj-font-body);
    font-size: 0.93rem;
    line-height: 1.48;
}

.featured-case__proof li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #b983ff;
    box-shadow: 0 0 16px rgba(185, 131, 255, 0.7);
}

/* Project Heading */
.text-container h3 {
    font-family: var(--proj-font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--proj-text-primary);
    margin: 0 0 0.5rem;

    transition: transform var(--proj-transition-fast);
}

/* Project Description */
.text-container p {
    font-family: var(--proj-font-body);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--proj-text-muted);
    margin: 0;
    max-width: 400px;
}

/* Reset alternating alignment */
.project-item:nth-child(even) .text-container p {
    margin-left: 0;
}

/* =========================================
   MOBILE TYPOGRAPHY
========================================= */
@media (max-width: 640px) {
    .projects-title {
        padding: 60px 0 40px;
        font-weight: 200;
    }

    .text-container h3 {
        font-size: 1.4rem;
        font-weight: 400;
    }

    .text-container p {
        font-size: 0.9rem;
    }

    .featured-case h3 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .featured-case__summary,
    .featured-case__proof li {
        font-size: 0.9rem;
    }
}
