* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fffdfc;
    color: #241522;
    font-family: Arial, Helvetica, sans-serif
}

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

.site-shell {
    min-height: 100vh;
    overflow: hidden
}

.page-width {
    width: min(1400px, calc(100% - 84px));
    margin: 0 auto
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    color: #20121f
}

.nav-bar {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 34px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -2px;
    white-space: nowrap
}

.heart-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    color: #f52d63;
    font-size: 47px;
    line-height: .75;
    transform: rotate(-3deg)
}

.heart-mark:after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 18px
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 27px
}

.nav-links a {
    position: relative;
    color: #514654;
    font-size: 14px;
    padding: 8px 0;
    white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
    color: #f52d63
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #f52d63
}

.outline-button {
    border: 1.5px solid #f52d63;
    border-radius: 999px;
    color: #f52d63;
    font-weight: 700;
    padding: 11px 25px;
    white-space: nowrap
}

.outline-button:hover {
    background: #f52d63;
    color: #fff
}

.hero-section {
    position: relative;
    min-height: 640px;
    padding-top: 135px;
    background: radial-gradient(circle at 76% 43%, #ffe7ef 0%, #fff4f7 30%, #fffdfd 66%)
}

.hero-section:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 253, 252, .99) 0%, rgba(255, 253, 252, .92) 31%, rgba(255, 253, 252, .35) 54%, rgba(255, 253, 252, 0) 76%)
}

.hero-grid,
.trust-row {
    position: relative;
    z-index: 1
}

.hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    min-height: 440px
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 20px
}

.eyebrow {
    display: inline-block;
    margin: 0 0 21px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffe9f0;
    color: #c91450;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase
}

.hero-copy h1 {
    max-width: 610px;
    margin: 0;
    color: #130b12;
    font-size: clamp(54px, 5vw, 80px);
    line-height: .98;
    letter-spacing: -4px
}

.hero-description {
    max-width: 580px;
    margin: 23px 0 25px;
    color: #55465a;
    font-size: 22px;
    line-height: 1.45
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 38px;
    flex-wrap: wrap
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 29px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fa2f67, #f72558);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(245, 45, 99, .2)
}

.play-icon {
    font-size: 21px
}

.text-link {
    color: #c91450;
    font-weight: 700
}

.text-link span,
.safety-banner a span {
    margin-left: 8px;
    font-size: 24px;
    vertical-align: -2px
}

.hero-art {
    position: relative;
    min-height: 480px;
    margin-right: -84px;
    background-image: url('/hero-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 118% auto;
    mix-blend-mode: multiply;
    opacity: .92;
    -webkit-mask-image: radial-gradient(ellipse 80% 88% at 56% 51%, #000 42%, rgba(0, 0, 0, .68) 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 88% at 56% 51%, #000 42%, rgba(0, 0, 0, .68) 70%, transparent 100%)
}

.hero-art:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 244, 248, .22), rgba(255, 244, 248, .22)), radial-gradient(ellipse 72% 78% at 57% 51%, transparent 28%, rgba(255, 239, 246, .4) 58%, #fff7fa 100%)
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 720px;
    margin-top: -6px;
    margin-left: max(42px, calc((100% - 1400px)/2));
    gap: 48px
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #4d4351;
    text-align: center
}

.trust-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #f52d63;
    border-radius: 50%;
    color: #f52d63;
    font-size: 18px;
    font-weight: 800
}

.connect-section {
    padding: 19px 0 0
}

.connect-section h2 {
    margin: 0 0 15px;
    text-align: center;
    color: #35132f;
    font-size: 34px;
    letter-spacing: -1.5px
}

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

.step-card {
    display: flex;
    align-items: center;
    gap: 23px;
    min-height: 122px;
    padding: 20px 23px;
    border: 1px solid #f1dce5;
    border-radius: 12px;
    background: #fff
}

.step-number {
    display: grid;
    flex: 0 0 66px;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #ffe1eb;
    color: #dd1756;
    font-size: 26px;
    font-weight: 800
}

.step-card h3 {
    margin: 0 0 4px;
    color: #25102a;
    font-size: 19px
}

.step-card p {
    margin: 0;
    color: #675273;
    font-size: 17px;
    line-height: 1.35
}

.safety-banner {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 27px 0 28px;
    padding: 16px 36px;
    border-radius: 15px;
    background: #fff0f6;
    color: #6e5577
}

.shield-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 43px;
    color: #c91450;
    border: 3px solid #c91450;
    border-radius: 45% 45% 50% 50%;
    font-size: 18px
}

.safety-banner strong {
    color: #ac1245;
    font-size: 20px;
    white-space: nowrap
}

.banner-divider {
    width: 1px;
    height: 29px;
    background: #e9a9bd
}

.banner-copy {
    flex: 1;
    font-size: 16px
}

.safety-banner a {
    color: #c91450;
    font-weight: 700;
    white-space: nowrap
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    color: #6d6176;
    font-size: 14px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 27px
}

.footer-brand .brand {
    color: #20121f;
    font-size: 25px
}

.footer-brand .heart-mark {
    font-size: 34px
}

.footer-brand .heart-mark:after {
    font-size: 12px;
    top: -8px;
    right: -9px
}

.footer-links {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.footer-links a:hover {
    color: #f52d63
}

@media(max-width:1150px) {
    .nav-bar {
        gap: 18px
    }

    .nav-links {
        gap: 13px
    }

    .nav-links a {
        font-size: 12px
    }

    .hero-copy h1 {
        font-size: 62px
    }

    .hero-art {
        margin-right: -24px
    }

    .page-width {
        width: min(100% - 48px, 1400px)
    }
}

@media(max-width:800px) {
    .site-header {
        position: relative;
        background: #fffdfd
    }

    .nav-bar {
        min-height: 74px;
        flex-wrap: wrap;
        padding: 12px 0
    }

    .nav-links {
        order: 3;
        flex-basis: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px
    }

    .nav-download {
        margin-left: auto
    }

    .hero-section {
        padding-top: 55px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-copy h1 {
        font-size: clamp(48px, 12vw, 68px)
    }

    .hero-art {
        min-height: 300px;
        margin: 15px 0 0;
        background-size: 125% auto;
        background-position: center;
        mix-blend-mode: multiply;
        -webkit-mask-image: radial-gradient(ellipse 82% 90% at 50% 50%, #000 42%, rgba(0, 0, 0, .65) 72%, transparent 100%);
        mask-image: radial-gradient(ellipse 82% 90% at 50% 50%, #000 42%, rgba(0, 0, 0, .65) 72%, transparent 100%)
    }

    .trust-row {
        margin: 28px auto 0;
        gap: 12px
    }

    .trust-item {
        font-size: 13px
    }

    .step-grid {
        grid-template-columns: 1fr
    }

    .safety-banner {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 22px
    }

    .banner-divider {
        display: none
    }

    .banner-copy {
        flex-basis: calc(100% - 65px)
    }

    .site-footer,
    .footer-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 22px 0
    }

    .footer-links {
        justify-content: flex-start
    }
}

@media(max-width:480px) {
    .page-width {
        width: calc(100% - 32px)
    }

    .brand {
        font-size: 29px
    }

    .nav-download {
        padding: 9px 14px;
        font-size: 13px
    }

    .hero-description {
        font-size: 18px
    }

    .hero-actions {
        gap: 20px
    }

    .primary-button {
        width: 100%;
        justify-content: center
    }

    .trust-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 22px
    }

    .connect-section h2 {
        font-size: 29px
    }
}


.brand-logo{display:block;width:205px;height:54px;object-fit:contain;object-position:left center}.brand:has(.brand-logo){gap:0}.footer-brand .brand-logo{width:145px;height:38px}@media(max-width:480px){.brand-logo{width:165px;height:46px}.footer-brand .brand-logo{width:130px;height:34px}}



