*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: linear-gradient(180deg, #FFCAD6 0%, #E3FFF9 100%);
    color: #595461;
}

.page-first {
    min-height: 100vh;
    min-height: 1024px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 24px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first-header {
    width: min(1000px, 100%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.first-center {
    width: min(1000px, 100%);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.first-back {
    width: fit-content;
    color: #ED688D;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.first-hero {
    text-align: center;
    padding: 40px 24px 26px;
}

.first-kicker {
    margin: 0 0 10px;
    color: #4DA39F;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.first-title {
    margin: 0;
    font-size: clamp(60px, 14vw, 200px);
    line-height: 0.92;
    letter-spacing: 0.03em;
    color: #ED688D;
}

.first-subtitle {
    margin: 18px 0 0;
    font-size: 18px;
    color: #757575;
}

.first-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 0;
}

.first-action-btn {
    min-width: 142px;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(117, 117, 117, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.first-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(117, 117, 117, 0.18);
}

.first-action-btn--pink {
    color: #ED688D;
    background: #FFCAD6;
}

.first-action-btn--mint {
    color: #4DA39F;
    background: #A5E1D4;
}

@media (max-width: 640px) {
    .page-first {
        padding: 20px 16px 40px;
    }

    .first-hero {
        padding: 44px 12px 32px;
    }

    .first-subtitle {
        font-size: 16px;
    }

    .first-action-btn {
        width: 100%;
        min-width: 0;
    }
}
