:root {
    --pink: #EE2A7B;
    --pink-d: #D41E6B;
    --pink-soft: #FDE3EE;
    --pink-tint: #FFF2F8;
    --ink: #15131A;
    --body: #5E5A66;
    --faint: #9A95A3;
    --dark: #171520;
    --bg: #fff;
    --line: #EFEAF0;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1180px;
}

* {
    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: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -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: "Manrope", sans-serif;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.02em;
    color: var(--ink)
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Manrope", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pink)
}

.pinktext {
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    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(238, 42, 123, .5)
}

.btn-pink:hover {
    transform: translateY(-2px);
    background: var(--pink-d)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: #000
}

.btn-ghost {
    background: #fff;
    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
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    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: "Manrope";
    font-weight: 800;
    font-size: 21px
}

.logo img {
    width: 48px;
    height: 48px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-family: "Manrope";
    font-size: 15px;
    font-weight: 600;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--pink)
}

.nav-call {
    font-family: "Manrope";
    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, #FFE9F3, #FFF6FB 58%, #fff);
    overflow: hidden;
    padding: 46px 0 70px
}

.hero .doodle {
    position: absolute;
    z-index: 2
}

.hero-in {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto
}

.hero-side {
    display: grid;
    gap: 18px
}

.minicard {
    width: 150px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -34px rgba(20, 8, 24, .4);
    background: #fff;
    padding: 8px
}

.minicard .g {
    height: 120px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative
}

.minicard .g .wv {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 32px
}

.minicard .g .wv i {
    width: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .9);
    animation: wv 1.4s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 7px
    }

    50% {
        height: var(--h, 22px)
    }
}

.minicard .g .live {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 100px;
    font-family: "Manrope"
}

.minicard .nm {
    font-family: "Manrope";
    font-weight: 700;
    font-size: 12px;
    margin-top: 8px
}

.minicard .hd {
    font-size: 10.5px;
    color: var(--faint)
}

.hero-mid {
    text-align: center
}

.hero .topstat {
    font-family: "Manrope";
    font-weight: 800;
    font-size: 15px
}

.hero .topstat span {
    display: block;
    font-family: "Inter";
    font-weight: 400;
    font-size: 11px;
    color: var(--body)
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-top: 6px
}

.hero h1 .hh {
    display: inline-block;
    vertical-align: -6px;
    width: 54px;
    height: 54px;
    margin: 0 4px
}

.hero .sub {
    color: var(--body);
    font-size: 16px;
    max-width: 430px;
    margin: 18px auto 30px
}

.quickstart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 8px 8px 10px;
    max-width: 560px;
    margin: 26px auto 0;
    box-shadow: 0 24px 50px -34px rgba(20, 8, 24, .4);
    flex-wrap: wrap;
    justify-content: center
}

.qfield {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 14px;
    border-right: 1px solid var(--line)
}

.qfield label {
    font-size: 10px;
    font-weight: 700;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: "Manrope"
}

.qfield select {
    border: none;
    background: none;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    outline: none
}

.quickstart .btn {
    flex-shrink: 0
}

.rating {
    margin-top: 22px
}

.rating b {
    font-family: "Manrope";
    font-weight: 800;
    font-size: 22px;
    display: block
}

.rating span {
    font-size: 12px;
    color: var(--body)
}

.rating .stars {
    color: var(--pink);
    letter-spacing: 2px;
    font-size: 14px
}

/* ===== section scaffold ===== */
.sec {
    padding: 92px 0
}

.sec-head {
    max-width: 660px;
    margin: 0 auto 30px;
    text-align: center
}

.sec-head .ek {
    justify-content: center
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 12px
}

.sec-head p {
    color: var(--body);
    margin-top: 14px
}

/* ===== OFFER (split) ===== */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center
}

.offer-c h2 {
    font-size: clamp(28px, 3.8vw, 42px)
}

.offer-c .lead {
    color: var(--body);
    margin-top: 14px
}

.checks {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 14px
}

.checks li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-weight: 600;
    font-size: 15.5px
}

.checks li .ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px
}

.checks li .ck svg {
    width: 13px;
    height: 13px
}

.checks li small {
    display: block;
    font-weight: 400;
    color: var(--body);
    font-size: 13.5px;
    margin-top: 1px
}

.offer-c .row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap
}

.avs {
    display: flex
}

.avs i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -12px
}

.avs i:first-child {
    margin-left: 0
}

.avs i:nth-child(1) {
    background: linear-gradient(145deg, #FBD3A8, #EE2A7B)
}

.avs i:nth-child(2) {
    background: linear-gradient(145deg, #C9D8FF, #8A91E8)
}

.avs i:nth-child(3) {
    background: linear-gradient(145deg, #C7ECDD, #5FB7A0)
}

.avs i:nth-child(4) {
    background: linear-gradient(145deg, #E8DCF8, #9B7DF0)
}

.offer-art {
    position: relative
}

.offer-art .frame {
    border-radius: 26px;
    height: 380px;
    background: linear-gradient(150deg, #FBD3E4, #EE2A7B);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center
}

.offer-art .frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fbadge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 36px -20px rgba(20, 8, 24, .5);
    padding: 10px 14px;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    z-index: 3
}

.fbadge .bd {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pink-soft);
    display: grid;
    place-items: center
}

.fbadge .bd svg {
    width: 15px;
    height: 15px;
    color: var(--pink)
}

.fbadge small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--faint)
}

.fbadge.b1 {
    top: 24px;
    left: -22px
}

.fbadge.b2 {
    bottom: 30px;
    right: -18px
}

/* ===== FEATURES ===== */
.feat-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center
}

.feat-art {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.feat-art .g {
    border-radius: 20px;
    height: 150px;
    background: linear-gradient(150deg, #FBD3E4, #EE2A7B)
}

.feat-art .g:nth-child(2) {
    background: linear-gradient(150deg, #C9D8FF, #8A91E8);
    margin-top: 26px
}

.feat-art .g:nth-child(3) {
    background: linear-gradient(150deg, #C7ECDD, #5FB7A0)
}

.feat-art .g:nth-child(4) {
    background: linear-gradient(150deg, #E8DCF8, #9B7DF0);
    margin-top: -26px
}

.feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 22px
}

.feat-item .fi2 {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--pink-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.feat-item .fi2 svg {
    width: 23px;
    height: 23px;
    color: var(--pink)
}

.feat-item h4 {
    font-size: 17px
}

.feat-item p {
    color: var(--body);
    font-size: 14px;
    margin-top: 3px
}

/* ===== PROCESS ===== */
.process {
    background: var(--pink-tint)
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.proc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden
}

.proc .num {
    font-family: "Manrope";
    font-weight: 800;
    font-size: 64px;
    color: var(--pink-soft);
    position: absolute;
    top: 14px;
    right: 22px;
    line-height: 1
}

.proc .pic {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2
}

.proc .pic svg {
    width: 26px;
    height: 26px;
    color: #fff
}

.proc h4 {
    font-size: 19px;
    position: relative;
    z-index: 2
}

.proc p {
    color: var(--body);
    font-size: 14px;
    margin-top: 8px;
    position: relative;
    z-index: 2
}

/* ===== MEMBERS (on the line) ===== */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 42px
}

.filters .fp {
    font-family: "Manrope";
    font-weight: 600;
    font-size: 14px;
    padding: 9px 22px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--body);
    cursor: pointer;
    transition: .25s
}

.filters .fp.on {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff
}

.mem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.mem {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .35s var(--ease)
}

.mem:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 64px -40px rgba(20, 8, 24, .4)
}

.mem .ph {
    height: 150px;
    display: grid;
    place-items: center;
    position: relative
}

.mem .ph .wv {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 42px
}

.mem .ph .wv i {
    width: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.5s ease-in-out infinite
}

.mem .ph .live {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.mem .ph .live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5FE3A0
}

.mem .bd2 {
    padding: 20px
}

.mem .nm {
    font-family: "Manrope";
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px
}

.mem .nm .v {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center
}

.mem .nm .v svg {
    width: 8px;
    height: 8px;
    color: #fff
}

.mem .hd {
    font-size: 12.5px;
    color: var(--faint)
}

.mem .snip {
    font-size: 13.5px;
    color: var(--body);
    margin: 12px 0 16px
}

.mem .connect {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mem .connect a {
    font-family: "Manrope";
    font-weight: 700;
    font-size: 13.5px;
    color: var(--pink)
}

.mem .connect .tag {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--body);
    background: var(--pink-tint);
    border-radius: 100px;
    padding: 4px 11px
}

.viewall {
    text-align: center;
    margin-top: 42px
}

.mem-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 18px
}

/* ===== TESTIMONIAL (dark) ===== */
.tst {
    background: var(--dark);
    color: #fff;
    border-radius: 34px;
    margin: 0 16px;
    overflow: hidden
}

.tst-in {
    padding: 80px 56px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative
}

.tst-in h2 {
    color: #fff;
    font-size: clamp(26px, 3.6vw, 38px);
    margin-bottom: 34px
}

.tst-q {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
    min-height: 120px
}

.tst-by {
    margin-top: 20px;
    font-family: "Manrope";
    font-weight: 700;
    color: var(--pink)
}

.tst-ctrl {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px
}

.tst-ctrl button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: none;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .25s
}

.tst-ctrl button:hover {
    background: var(--pink);
    border-color: var(--pink)
}

.tst-ctrl button svg {
    width: 18px;
    height: 18px
}

.tst-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    margin-top: 24px
}

/* ===== FAQ (two-col) ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    height: max-content
}

.fi.open {
    border-color: var(--pink);
    box-shadow: 0 24px 50px -38px rgba(238, 42, 123, .5)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink)
}

.fq .pm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-size: 17px;
    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 22px 22px;
    font-size: 14px;
    color: var(--body)
}

/* ===== CTA card ===== */
.ctacard {
    margin: 0 16px;
    border-radius: 34px;
    background: linear-gradient(120deg, #FFE3F0, #F4E9FF);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 28px
}

.ctacard .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .5
}

.ctacard h2 {
    font-size: clamp(30px, 4.6vw, 52px);
    position: relative;
    z-index: 2
}

.ctacard p {
    color: var(--body);
    font-size: 17px;
    max-width: 480px;
    margin: 14px auto 0;
    position: relative;
    z-index: 2
}

.ctacard .num {
    display: block;
    font-family: "Manrope";
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 34px);
    margin: 22px 0 18px;
    position: relative;
    z-index: 2
}

.ctacard .num:hover {
    color: var(--pink)
}

.ctacard .ops {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .66);
    padding: 30px 0;
    margin-top: 80px
}

.f-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.f-bot .lk {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Manrope";
    font-weight: 700;
    color: #fff
}

.f-bot .age span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    font-size: 10px;
    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(20, 8, 24, .4)
}

.callbar .t {
    font-family: "Manrope";
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--body);
    font-family: "Inter"
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .hero-in {
        grid-template-columns: 1fr
    }

    .hero-side {
        display: none
    }

    .offer-grid,
    .feat-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .feat-art {
        order: -1
    }

    .proc-grid,
    .mem-grid {
        grid-template-columns: 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .f-top {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 22px
    }

    .sec {
        padding: 60px 0
    }

    .quickstart {
        flex-direction: column;
        border-radius: 24px;
        align-items: stretch
    }

    .qfield {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .tst-in {
        padding: 54px 26px
    }

    .f-top {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}