/* ── Page header ── */
.ph-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.ph-header .section-label {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.ph-header .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.ph-header .section-subtitle {
    font-size: 1.15rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* ── Coming soon card ── */
.ph-card {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.ph-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ph-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.ph-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ph-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ph-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.ph-links a:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.03);
}
