.back-link {
    margin-bottom: 3rem;
    animation: fadeUp 0.5s 0.1s ease both;
}

.back-link a {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.2s;
}

.back-link a:hover {
    color: var(--green);
}

.project-hero {
    margin-bottom: 3rem;
    animation: fadeUp 0.6s 0.2s ease both;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.project-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.project-short {
    max-width: 560px;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.7rem;
    color: var(--green-dim);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.1em;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
    animation: fadeUp 0.5s 0.3s ease both;
}

.project-content {
    max-width: 680px;
    margin-bottom: 4rem;
    animation: fadeUp 0.6s 0.35s ease both;
}

.project-content p {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.9rem;
}

.project-link-section {
    margin-bottom: 4rem;
    animation: fadeUp 0.6s 0.4s ease both;
}

.launch-btn {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--bg);
    background: var(--green);
    padding: 0.75rem 2rem;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: background 0.2s, letter-spacing 0.2s;
}

.launch-btn:hover {
    background: #fff;
    letter-spacing: 0.25em;
}