* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0c0c0b;
}

a {
    color: #f5479e;
    text-decoration: none;
}

a:hover {
    color: #ff6fb5;
}

::selection {
    background: #ed2b9b;
    color: #fff;
}

input::placeholder,
select:invalid {
    color: #7c786e;
}

@keyframes simpliPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(237, 43, 155, 0.55);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(237, 43, 155, 0);
    }
}

@keyframes simpliBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

/* interactive states (were style-hover / style-focus in the design export) */
.btn-grad {
    transition: background 0.2s ease;
}

.btn-grad:hover {
    background: linear-gradient(
        100deg,
        #fba85a 0%,
        #f87180 45%,
        #f24eb0 100%
    ) !important;
}

.btn-outline {
    transition: border-color 0.2s ease;
}

.btn-outline:hover {
    border-color: #f5479e !important;
}

.link-cal:hover {
    color: #f5479e !important;
}

.field {
    transition: border-color 0.15s ease;
}

.field:focus {
    border-color: #f5479e !important;
    outline: none;
}

/* light responsive layer (prototype was desktop-first) */
@media (max-width: 860px) {
    .page-pad {
        padding: 56px 26px !important;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    .steps-connector {
        display: none !important;
    }

    .h-huge {
        font-size: 74px !important;
    }

    .topbar {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .grid-form-row {
        grid-template-columns: 1fr !important;
    }

    .h-huge {
        font-size: 54px !important;
    }
}
