@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --green: #b7d99a;
    --ink: #232334;
    --muted: #6f7280;
    --pink: #ec4f93;
    --blue: #14aee8;
    --soft-pink: #fde8f1;
    --soft-blue: #e3f6ff;
    --soft-mint: #e8fbf4;
    --soft-yellow: #fff0c8;
    --line: #edf0f5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

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

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

.site {
    width: 100%;
    margin: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: none;
}

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

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 44px;
    background: #fff;
}

.logo img {
    width: 128px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 30px;
    color: #525462;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links a:first-child {
    color: var(--pink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 0;
    border-radius: 3px;
    padding: 0 20px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.btn.pink {
    background: var(--pink);
}

.btn.light {
    color: var(--blue);
    border: 1px solid #bfefff;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(45, 27, 79, 0.62), rgba(44, 115, 73, 0.28)),
        linear-gradient(120deg, rgba(103, 64, 137, 0.55), rgba(248, 91, 145, 0.28)),
        url('hero.webp') center / cover;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 93% 33%, rgba(236, 79, 147, 0.34) 0 4px, transparent 5px),
        radial-gradient(circle at 88% 47%, rgba(236, 79, 147, 0.26) 0 9px, transparent 10px),
        radial-gradient(circle at 96% 58%, rgba(236, 79, 147, 0.22) 0 13px, transparent 14px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.hero-copy {
    color: #fff;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero-copy h1 {
    max-width: 540px;
    margin: 0;
    font-size: 49px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-copy p {
    max-width: 520px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-btn {
    margin-top: 28px;
    min-height: 44px;
    padding: 0 28px;
}

.section {
    position: relative;
    padding: 92px 0;
    background: #fff;
}

.section.tint {
    background: linear-gradient(170deg, #f4f6ff 0%, #fff 72%);
}

.hearts {
    background:
        radial-gradient(circle at 7% 17%, rgba(236, 79, 147, 0.12) 0 10px, transparent 11px),
        radial-gradient(circle at 92% 15%, rgba(236, 79, 147, 0.1) 0 9px, transparent 10px),
        radial-gradient(circle at 12% 80%, rgba(236, 79, 147, 0.1) 0 14px, transparent 15px),
        #fff;
}

.center {
    text-align: center;
}

.eyebrow {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.section-title {
    margin-bottom: 44px;
}

.section-title p,
.split p,
.card p,
.legal p,
.footer p {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.feature {
    min-height: 118px;
    padding: 28px 36px;
    border-radius: 18px;
}

.feature.blue {
    background: var(--soft-blue);
}

.feature.green {
    background: var(--soft-mint);
}

.feature.pink {
    background: var(--soft-pink);
}

.feature.yellow {
    background: var(--soft-yellow);
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.photo-stack {
    position: relative;
    min-height: 380px;
    display: grid;
    align-items: center;
}

.photo-stack img {
    width: min(100%, 460px);
    height: auto;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.card {
    min-height: 220px;
    padding: 34px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(35, 35, 52, 0.08);
}

.card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--pink);
}

.stories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: end;
}

.story {
    position: relative;
    min-height: 220px;
    overflow: visible;
    background: #f8f2f7;
    box-shadow: 0 16px 35px rgba(35, 35, 52, 0.09);
}

.story:nth-child(2) {
    min-height: 270px;
}

.story:nth-child(3) {
    min-height: 245px;
}

.story:nth-child(4) {
    min-height: 250px;
}

.story img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.story span {
    position: absolute;
    right: 20px;
    bottom: -16px;
    left: 20px;
    padding: 13px 16px;
    background: #fff;
    color: var(--blue);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(35, 35, 52, 0.08);
}

.banner {
    min-height: 180px;
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(rgba(37, 22, 55, 0.5), rgba(37, 22, 55, 0.5)),
        url('icon.webp') center / cover;
}

.banner h2 {
    color: #fff;
}

.page-hero {
    padding: 84px 0 54px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.narrow {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
}

.legal {
    padding: 70px 0;
}

.legal h2 {
    margin: 34px 0 8px;
    font-size: 24px;
}

.notice {
    padding: 22px 26px;
    border-left: 4px solid var(--blue);
    background: var(--soft-blue);
    font-weight: 700;
}

.steps-list {
    color: var(--muted);
    font-weight: 500;
}

.footer {
    padding: 70px 0 26px;
    background:
        radial-gradient(circle at 5% 25%, rgba(236, 79, 147, 0.12) 0 13px, transparent 14px),
        radial-gradient(circle at 88% 16%, rgba(236, 79, 147, 0.1) 0 10px, transparent 11px),
        #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 40px;
}

.footer img {
    width: 130px;
}

.footer-links {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.footer-links strong {
    color: var(--ink);
}

.copyright {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #a0a4af;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 900px) {
    .site {
        margin: 0;
    }

    .nav {
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px 20px;
    }

    .nav-links {
        order: 3;
        flex: 0 0 100%;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        padding: 2px 0 4px;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .hero-inner,
    .split,
    .feature-grid,
    .step-grid,
    .stories,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 36px 0;
    }

    .hero-inner {
        gap: 28px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .photo-stack {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .container,
    .narrow {
        width: calc(100% - 20px);
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 25px;
    }

    .section {
        padding: 64px 0;
    }

    .nav {
        padding: 14px 12px;
    }

    .logo img {
        width: 112px;
    }

    .nav > .btn {
        min-height: 34px;
        padding: 0 14px;
        font-size: 11px;
    }

    .nav-links {
        gap: 18px;
        font-size: 11px;
    }

    .hero {
        min-height: 500px;
    }
}
