:root {
    --pink: #FF4D87;
    --pink-d: #E83A72;
    --pink-soft: #FFE2EC;
    --blush: #FFF4F7;
    --ink: #2B2A4D;
    --body: #6F6C88;
    --faint: #A9A6BE;
    --line: #F3E7ED;
    --blue: #8FA2E8;
    --lav: #C9B6F2;
    --yellow: #FFD56B;
    --mint: #9BE0C9;
    --bg: #fff;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Mulish", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--pink);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

h1,
h2,
h3,
h4 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -.01em
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: .3s var(--ease)
}

.btn-pink {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(255, 77, 135, .55)
}

.btn-pink:hover {
    transform: translateY(-2px);
    background: var(--pink-d);
    box-shadow: 0 20px 38px -12px rgba(255, 77, 135, .6)
}

.btn-white {
    background: #fff;
    color: var(--pink);
    box-shadow: 0 14px 30px -12px rgba(43, 42, 77, .2)
}

.btn-white:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--pink);
    color: var(--pink)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .08s
}

[data-d="2"] {
    transition-delay: .16s
}

[data-d="3"] {
    transition-delay: .24s
}

/* corner block */
.corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 200px;
    background: var(--pink);
    border-bottom-right-radius: 40px;
    z-index: 0;
    opacity: .96
}

.corner.r {
    left: auto;
    right: 0;
    top: auto;
    bottom: -40px;
    width: 200px;
    height: 240px;
    background: var(--pink-soft);
    border-radius: 50px 0 0 0
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 21px;
    color: var(--pink)
}

.logo img {
    width: 48px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-family: "Quicksand";
    font-size: 15px;
    font-weight: 600;
    color: var(--body)
}

.nav-links a {
    position: relative
}

.nav-links a:hover {
    color: var(--pink)
}

.nav-call {
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 100px;
    background: var(--pink);
    color: #fff;
    transition: .3s
}

.nav-call:hover {
    background: var(--pink-d)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(180deg, #FFE9F0 0%, #FFF6F9 60%, #fff 100%);
    overflow: hidden;
    padding: 70px 0 30px
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    opacity: .85;
    z-index: 1
}

.hero-in {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.hero .ek {
    justify-content: center
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 56px);
    margin-top: 16px
}

.hero .sub {
    color: var(--body);
    font-size: 17.5px;
    max-width: 600px;
    margin: 20px auto 0
}

.hero .cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px
}

.hero .num {
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 20px
}

.hero .num:hover {
    color: var(--pink)
}

.hero .proofline {
    margin-top: 18px;
    font-size: 14px;
    color: var(--body)
}

.hero-art {
    position: relative;
    z-index: 3;
    max-width: 680px;
    margin: 30px auto 0
}

/* ===== section scaffold ===== */
.sec {
    padding: 92px 0
}

.sec-head {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-top: 14px
}

.sec-head p {
    color: var(--body);
    margin-top: 16px;
    font-size: 16.5px
}

.center-ek {
    justify-content: center
}

/* ===== PILLARS ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 46px
}

.pillar {
    text-align: center;
    padding: 8px
}

.pillar .pi {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 26px;
    background: var(--blush);
    display: grid;
    place-items: center
}

.pillar:nth-child(2) .pi {
    background: #EEF1FF
}

.pillar:nth-child(3) .pi {
    background: #FFF6E4
}

.pillar .pi svg {
    width: 44px;
    height: 44px
}

.pillar h3 {
    font-size: 21px
}

.pillar p {
    color: var(--body);
    font-size: 15px;
    margin-top: 10px
}

/* ===== HOW (steps) ===== */
.how {
    background: var(--blush)
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.hstep {
    background: #fff;
    border-radius: 24px;
    padding: 34px 34px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 30px 60px -42px rgba(43, 42, 77, .4)
}

.hstep .n {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 22px
}

.hstep:nth-child(2) .n {
    background: var(--blue)
}

.hstep:nth-child(3) .n {
    background: var(--lav)
}

.hstep:nth-child(4) .n {
    background: var(--mint);
    color: var(--ink)
}

.hstep h4 {
    font-size: 19px
}

.hstep p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 8px
}

/* ===== WHY (split) ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center
}

.why-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px
}

.why-r .lead {
    color: var(--body);
    margin-top: 14px;
    font-size: 16.5px
}

.whypoint {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px
}

.whypoint .wi {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pink-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.whypoint .wi svg {
    width: 22px;
    height: 22px;
    color: var(--pink)
}

.whypoint h4 {
    font-size: 17px
}

.whypoint p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 3px
}

/* ===== START ===== */
.start {
    background: linear-gradient(180deg, #fff, #FFF4F7)
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 46px
}

.scard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px 30px;
    transition: .35s var(--ease)
}

.scard:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 64px -40px rgba(43, 42, 77, .4)
}

.scard .si {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--pink-soft);
    display: grid;
    place-items: center;
    margin-bottom: 20px
}

.scard .si svg {
    width: 26px;
    height: 26px;
    color: var(--pink)
}

.scard h4 {
    font-size: 19px
}

.scard p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 10px
}

.start-note {
    text-align: center;
    margin-top: 34px;
    font-size: 14px;
    color: var(--body)
}

.start-note b {
    color: var(--pink)
}

/* ===== DC LOCAL ===== */
.dc {
    background: var(--pink);
    border-radius: 34px;
    margin: 0 16px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.dc .cl {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border-radius: 100px
}

.dc-in {
    position: relative;
    z-index: 2;
    padding: 76px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.dc-in h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 40px)
}

.dc-in p {
    color: rgba(255, 255, 255, .92);
    margin-top: 14px;
    max-width: 430px;
    font-size: 15.5px
}

.dc .numbox {
    display: inline-block;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 18px;
    padding: 16px 26px;
    margin-top: 24px
}

.dc .numbox span {
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    display: block;
    font-family: "Mulish"
}

.dc .numbox b {
    font-family: "Quicksand";
    font-size: 24px;
    font-weight: 700
}

.dc .numbox b:hover {
    color: #FFE2EC
}

.dc .toll {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .92)
}

.dc .toll a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chips span {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 100px;
    font-family: "Quicksand";
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 16px;
    transition: .25s
}

.chips span:hover {
    background: #fff;
    color: var(--pink)
}

/* ===== ETIQUETTE ===== */
.etq-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.eq {
    text-align: center;
    padding: 26px 18px;
    border-radius: 22px;
    background: var(--blush)
}

.eq .ei {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    box-shadow: 0 12px 24px -16px rgba(43, 42, 77, .5)
}

.eq .ei svg {
    width: 23px;
    height: 23px;
    color: var(--pink)
}

.eq h4 {
    font-size: 15px
}

.eq p {
    font-size: 12px;
    color: var(--body);
    margin-top: 5px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 780px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.fi.open {
    border-color: var(--pink);
    box-shadow: 0 24px 50px -38px rgba(255, 77, 135, .5)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 17px;
    color: var(--ink)
}

.fq .pm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: .3s
}

.fi.open .pm {
    background: var(--pink);
    color: #fff;
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--body)
}

/* ===== CLOSE ===== */
.close {
    position: relative;
    text-align: center;
    padding: 100px 28px;
    background: linear-gradient(180deg, #fff, #FFF4F7);
    overflow: hidden
}

.close h2 {
    font-size: clamp(30px, 4.8vw, 54px)
}

.close p {
    color: var(--body);
    font-size: 17.5px;
    max-width: 520px;
    margin: 16px auto 0
}

.close .num {
    display: block;
    font-family: "Quicksand";
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 26px 0 22px
}

.close .num:hover {
    color: var(--pink)
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .66);
    padding: 30px 0;
    margin-top: 0
}

.f-bot {
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Quicksand";
    font-weight: 700;
    color: #fff
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 700;
    color: #fff
}

/* mobile callbar */
.callbar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 9px 9px 22px;
    box-shadow: 0 18px 40px -16px rgba(43, 42, 77, .4)
}

.callbar .t {
    font-family: "Quicksand";
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    color: var(--body);
    font-family: "Mulish"
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .pillars,
    .start-grid {
        grid-template-columns: 1fr
    }

    .how-grid {
        grid-template-columns: 1fr
    }

    .why-grid,
    .dc-in {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .why-art {
        order: -1
    }

    .etq-grid {
        grid-template-columns: 1fr 1fr
    }

    .f-top {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 22px
    }

    .sec {
        padding: 62px 0
    }

    .etq-grid,
    .f-top {
        grid-template-columns: 1fr
    }

    .dc-in {
        padding: 48px 28px
    }

    .hstep {
        padding: 26px 24px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}