* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background:
        radial-gradient(circle at 72% 8%, rgba(240, 21, 112, 0.14), transparent 28%),
        radial-gradient(circle at 14% 20%, rgba(255, 173, 205, 0.22), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8fb 38%, #fff 68%, #fff5fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background-image:
        radial-gradient(rgba(240, 21, 112, 0.18) 1px, transparent 1px),
        radial-gradient(rgba(240, 21, 112, 0.10) 1px, transparent 1px);
    background-position: 0 0, 22px 28px;
    background-size: 58px 58px, 92px 92px;
    opacity: 0.35;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 42% 0%, rgba(255, 217, 232, 0.52), transparent 24%),
        radial-gradient(circle at 74% 39%, rgba(255, 224, 236, 0.44), transparent 22%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 56px));
    margin: 0 auto;
}

.section-pad {
    padding: 54px 0 34px;
}

.section-pad-sm {
    padding: 38px 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--font-display);
    color: var(--color-heading);
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(50px, 6.5vw, 84px);
    line-height: 0.95;
    margin-bottom: 24px;
}

h1 span,
h2 span {
    color: var(--color-primary);
}

h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.04;
}

h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-heading);
}

p {
    color: var(--color-muted);
    line-height: 1.7;
}

.page-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(240, 21, 112, 0.13);
    filter: blur(100px);
    pointer-events: none;
    z-index: -3;
}

.page-glow-left {
    left: -150px;
    top: 260px;
}

.page-glow-right {
    right: -120px;
    top: -80px;
}

.section-heading.centered {
    text-align: center;
}

.title-line {
    display: inline-block;
    width: 78px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin-top: 10px;
}

.section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-row h2 {
    margin: 0;
}

.section-row > a {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 740px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section-pad {
        padding: 34px 0 26px;
    }

    .section-pad-sm {
        padding: 30px 0;
    }

    .section-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-left {
        text-align: left !important;
    }
}
