:root {
    --violet: #6E3CD0;
    --violet-d: #5A2CB5;
    --violet-deep: #3C1E80;
    --violet-soft: #EEE8FB;
    --violet-tint: #F6F2FE;
    --pink: #E92C82;
    --pink-d: #D11E72;
    --pink-soft: #FCE1EE;
    --ink: #241B3D;
    --body: #6A6480;
    --faint: #A49EB8;
    --bg: #fff;
    --line: #ECE6F4;
    --sun: #FFC24B;
    --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: "Karla", sans-serif;
    font-size: 16.5px;
    line-height: 1.72;
    -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: "Rubik", sans-serif;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.01em;
    color: var(--ink)
}

h2{
    font-size: clamp(28px, 4vw, 44px);
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    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(233, 44, 130, .5)
}

.btn-pink:hover {
    transform: translateY(-2px);
    background: var(--pink-d)
}

.btn-violet {
    background: var(--violet);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(110, 60, 208, .45)
}

.btn-violet:hover {
    transform: translateY(-2px);
    background: var(--violet-d)
}

.btn-white {
    background: #fff;
    color: var(--violet);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .2)
}

.btn-white:hover {
    transform: translateY(-2px)
}

/* 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(60, 30, 128, .86);
    backdrop-filter: blur(12px)
}

.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;
    gap: 10px;
    font-family: "Rubik";
    font-weight: 800;
    font-size: 21px;
    color: #fff
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    gap: 30px;
    font-family: "Rubik";
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .86)
}

.nav-links a:hover {
    color: #fff
}

.nav-call {
    font-family: "Rubik";
    font-weight: 600;
    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(125deg, #6E3CD0, #9B3FB8 70%, #C53C90);
    overflow: hidden;
    padding: 60px 0 150px;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%)
}

.hero .heartdot {
    position: absolute;
    color: rgba(255, 255, 255, .16)
}

.hero-in {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.hero-l h1 {
    color: #fff;
    font-size: clamp(40px, 5.8vw, 66px);
    font-weight: 800;
    line-height: 1.05
}

.hero-l .sub {
    color: rgba(255, 255, 255, .9);
    font-size: 16.5px;
    max-width: 440px;
    margin-top: 18px;
    margin-bottom: 2rem;
}

.qcard {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    margin-top: 28px;
    max-width: 380px;
    box-shadow: 0 40px 80px -40px rgba(20, 8, 40, .6)
}

.qrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line)
}

.qrow label {
    font-family: "Rubik";
    font-weight: 600;
    font-size: 13px;
    color: var(--ink);
    width: 78px;
    flex-shrink: 0
}

.qrow .opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.qrow select {
    flex: 1;
    border: none;
    background: none;
    font-family: "Rubik";
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    cursor: pointer
}

.qcard .btn {
    width: 100%;
    margin-top: 18px
}

.hero-art {
    position: relative;
    height: 380px
}

.iso {
    position: absolute;
    border-radius: 22px;
    box-shadow: 0 30px 60px -28px rgba(20, 8, 40, .5);
    padding: 10px;
    background: #fff
}

.iso .g {
    border-radius: 14px;
    display: grid;
    place-items: center;
    position: relative
}

.iso .wv {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 34px
}

.iso .wv i {
    width: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.4s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 8px
    }

    50% {
        height: var(--h, 24px)
    }
}

.iso .live {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-family: "Rubik";
    font-weight: 600;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 100px
}

.iso .nm {
    font-family: "Rubik";
    font-weight: 600;
    font-size: 12px;
    margin-top: 8px
}

.iso .hd {
    font-size: 10.5px;
    color: var(--faint)
}

.iso.a {
    width: 178px;
    left: 8%;
    top: 30px;
    transform: rotate(-6deg);
    z-index: 2
}

.iso.a .g {
    height: 120px;
    background: linear-gradient(150deg, #F7A8CB, #E92C82)
}

.iso.b {
    width: 160px;
    right: 6%;
    top: 120px;
    transform: rotate(6deg);
    z-index: 3
}

.iso.b .g {
    height: 108px;
    background: linear-gradient(150deg, #B7A0F2, #6E3CD0)
}

.chip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 36px -20px rgba(20, 8, 40, .5);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    z-index: 4
}

.chip svg {
    width: 22px;
    height: 22px;
    color: var(--pink)
}

.chip.c1 {
    top: 0;
    right: 24%
}

.chip.c2 {
    bottom: 30px;
    left: 2%
}

.chip.c2 svg {
    color: var(--violet)
}

/* ===== FEATURE CARDS (overlap) ===== */
.fcards {
    max-width: var(--maxw);
    margin: -96px auto 0;
    padding: 0 28px;
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.fc {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 40px 70px -46px rgba(20, 8, 40, .45);
    border: 1px solid var(--line)
}

.fc .ic {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--pink-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 16px
}

.fc .ic svg {
    width: 30px;
    height: 30px;
    color: var(--pink)
}

.fc h4 {
    font-size: 17px
}

.fc p {
    color: var(--body);
    margin-top: 6px
}

/* ===== section scaffold ===== */
.sec {
    padding: 90px 0
}

.sec-head {
    max-width: 640px;
    margin: 0 auto 30px;
    text-align: center
}

.sec-head .ek {
    justify-content: center
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 10px
}

.sec-head p {
    color: var(--body);
    margin-top: 14px
}

/* ===== START (split) ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.split-c .lead {
    color: var(--body);
    margin-top: 14px
}

.split-c .lead+.lead {
    margin-top: 14px
}

.split-c .btn {
    margin-top: 26px
}

.ring {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto
}

.ring .core {
    position: absolute;
    inset: 34%;
    border-radius: 50%;
    background: linear-gradient(150deg, #F7A8CB, #E92C82);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 50px -20px rgba(233, 44, 130, .6)
}

.ring .core svg {
    width: 48px;
    height: 48px;
    color: #fff
}

.ring .dot {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px -16px rgba(20, 8, 40, .5)
}

.ring .dot .mwv {
    display: flex;
    gap: 2px;
    align-items: center;
    height: 18px
}

.ring .dot .mwv i {
    width: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .92)
}

.ring .o {
    position: absolute;
    border: 2px dashed var(--violet-soft);
    border-radius: 50%;
    inset: 6%
}

/* ===== HOW (coastal bg) ===== */
.how {
    position: relative;
    background: linear-gradient(180deg, #F6F2FE, #FBEFF4);
    overflow: hidden
}

.coast {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 1
}

.sun {
    position: absolute;
    top: 60px;
    left: 8%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 0 0 50px rgba(255, 194, 75, .6);
    z-index: 1
}

.palm {
    position: absolute;
    bottom: 60px;
    right: 7%;
    z-index: 1;
    opacity: .8
}

.how .wrap {
    position: relative;
    z-index: 3
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 48px
}

.step {
    background: #fff;
    border-radius: 24px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 36px 70px -46px rgba(20, 8, 40, .4);
    position: relative
}

.step .circ {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 40%, #FBEAF3, #EEE8FB)
}

.step .circ svg {
    width: 54px;
    height: 54px;
    color: var(--pink)
}

.step .badge {
    position: absolute;
    bottom: 8px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Rubik";
    font-weight: 700;
    font-size: 14px;
    border: 4px solid #fff
}

.step h4 {
    font-size: 19px
}

.step p {
    color: var(--body);
    font-size: 14px;
    margin: 8px 0 16px
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: center
}

.stat .si {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 35%, #F3ECFE, #E7DBFB)
}

.stat .si svg {
    width: 42px;
    height: 42px;
    color: var(--violet)
}

.stat b {
    font-family: "Rubik";
    font-weight: 800;
    font-size: clamp(30px, 4vw, 44px);
    display: block;
    color: var(--ink)
}

.stat span {
    color: var(--body)
}

/* ===== BAND ===== */
.band {
    background: linear-gradient(120deg, #6E3CD0, #A23BB0);
    color: #fff;
    position: relative;
    overflow: hidden
}

.band .hp {
    position: absolute;
    color: rgba(255, 255, 255, .12)
}

.band-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    padding: 64px 0
}

.band-in h2 {
    color: #fff;
    font-size: clamp(28px, 3.8vw, 42px)
}

.band-in p {
    color: rgba(255, 255, 255, .9);
    margin-top: 12px;
    max-width: 420px
}

.band-in .btn {
    margin-top: 24px
}

.band-art {
    position: relative;
    height: 200px
}

.band-art .blob {
    position: absolute;
    border-radius: 50%
}

.band-art .hh {
    position: absolute;
    color: #fff
}

/* ===== AMAZING (split) ===== */
.amz-art {
    position: relative
}

.amz-art .frame {
    border-radius: 24px;
    height: 380px;
    background: linear-gradient(150deg, #B7A0F2, #E92C82);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center
}

.amz-art .frame .wv {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 64px
}

.amz-art .frame .wv i {
    width: 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .9);
    animation: wv 1.5s ease-in-out infinite
}

.freebadge {
    position: absolute;
    right: -14px;
    top: 42%;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 24px 50px -20px rgba(233, 44, 130, .7);
    z-index: 3
}

.freebadge b {
    font-family: "Rubik";
    font-weight: 800;
    font-size: 26px;
    line-height: 1
}

.freebadge span {
    font-size: 11px;
    display: block;
    margin-top: 4px;
    opacity: .92
}

.amz-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px
}

.amz-item .ai {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--violet-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.amz-item .ai svg {
    width: 23px;
    height: 23px;
    color: var(--violet)
}

.amz-item h4 {
    font-size: 17px
}

.amz-item p {
    color: var(--body);
    font-size: 14px;
    margin-top: 3px
}

/* ===== MEMBERS ===== */
.members {
    background: linear-gradient(120deg, #3C1E80, #6E3CD0);
    color: #fff;
    position: relative;
    overflow: hidden
}

.mem-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 46px;
    align-items: center;
    padding: 74px 0
}

.mem-in h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 40px)
}

.mem-in .lead {
    color: rgba(255, 255, 255, .85);
    margin-top: 12px;
    max-width: 340px
}

.mem-in .btn {
    margin-top: 22px
}

.mcards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.mcard {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px
}

.mcard .av {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    position: relative
}

.mcard .av .ld {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #5FE3A0;
    border: 2px solid #2B1A5C
}

.mcard .nm {
    font-family: "Rubik";
    font-weight: 600;
    font-size: 15px;
    color: #fff
}

.mcard .hd {
    font-size: 12px;
    color: rgba(255, 255, 255, .62)
}

.mcard a {
    font-size: 12.5px;
    color: #FF9CC6;
    font-family: "Rubik";
    font-weight: 600;
    margin-top: 4px;
    display: inline-block
}

.mem-note {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    padding-bottom: 30px
}

/* ===== STORIES ===== */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.story {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .35s var(--ease)
}

.story:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 64px -40px rgba(20, 8, 40, .35)
}

.story .hd2 {
    height: 120px;
    position: relative;
    display: grid;
    place-items: center
}

.story .hd2 .ic {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    display: grid;
    place-items: center
}

.story .hd2 .ic svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.story .bd3 {
    padding: 24px
}

.story .meta {
    font-size: 12px;
    color: var(--faint);
    margin-bottom: 8px
}

.story h4 {
    font-size: 18px
}

.story p {
    font-size: 14px;
    color: var(--body);
    margin-top: 8px
}

.story-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 24px
}

/* ===== CTA card ===== */
.ctacard {
    margin: 0 16px;
    border-radius: 34px;
    background: linear-gradient(120deg, #6E3CD0, #A23BB0);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 28px
}

.ctacard h2 {
    font-size: clamp(30px, 4.6vw, 52px);
    position: relative;
    z-index: 2;
    color: #fff;
}

.ctacard p {
    color: #fff;
    font-size: 17px;
    max-width: 480px;
    margin: 14px auto 0;
    position: relative;
    z-index: 2
}

.ctacard .ops {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* ===== NEWSLETTER + FOOTER ===== */
.foot-wrap {
    position: relative;
    margin-top: 80px
}

footer {
    background: linear-gradient(180deg, #3C1E80, #2A1560);
    color: rgba(255, 255, 255, .7);
    padding: 10px 0 36px
}
.f-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.f-social {
    display: flex;
    gap: 10px
}

.f-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    transition: .25s
}

.f-social a:hover {
    background: var(--pink)
}

.f-social svg {
    width: 15px;
    height: 15px;
    color: #fff
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Rubik";
    font-weight: 600;
    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, 40, .4)
}

.callbar .t {
    font-family: "Rubik";
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--body);
    font-family: "Karla"
}

@media(max-width:980px) {
    .nav-links {
        display: none
    }

    .hero-in,
    .split,
    .band-in,
    .mem-in {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero-art {
        display: none
    }

    .fcards {
        grid-template-columns: 1fr 1fr;
        margin-top: -70px
    }

    .steps,
    .stats,
    .story-grid {
        grid-template-columns: 1fr
    }

    .amz-art {
        order: -1
    }

    .mcards {
        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: 60px 0
    }

    .hero {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%)
    }

    .fcards {
        grid-template-columns: 1fr
    }

    .mcards,
    .f-top {
        grid-template-columns: 1fr
    }

    .freebadge {
        right: 14px;
        top: auto;
        bottom: 14px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
