:root {
    --violet: #7B4FE0;
    --violet-d: #6539C2;
    --violet-deep: #4A2A96;
    --violet-soft: #EEE7FC;
    --violet-tint: #F7F3FE;
    --pink: #EE3D96;
    --pink-d: #D62A82;
    --pink-soft: #FDE3F0;
    --ink: #272233;
    --body: #6B6577;
    --faint: #A8A2B6;
    --green: #6FC98E;
    --blue: #6FA8E6;
    --sun: #FFCB5B;
    --coralp: #FF7A8A;
    --bg: #fff;
    --line: #EDE8F5;
    --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: "Figtree", sans-serif;
    font-size: 16.5px;
    line-height: 1.74;
    -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: "Urbanist", sans-serif;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.02em;
    color: var(--ink)
}

.pk {
    color: var(--pink)
}

.vt {
    color: var(--violet)
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    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(238, 61, 150, .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(123, 79, 224, .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)
}

.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
}

/* flat decor */
.dec {
    position: absolute;
    z-index: 1;
    pointer-events: none
}

/* ===== 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: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Urbanist";
    font-weight: 800;
    font-size: 21px
}

.logo .mk {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--violet), var(--pink));
    display: grid;
    place-items: center
}

.logo .mk svg {
    width: 18px;
    height: 18px;
    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: "Urbanist";
    font-size: 15px;
    font-weight: 600;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--pink)
}

.nav-call {
    font-family: "Urbanist";
    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(170deg, #F7F3FE, #FDF1F8 55%, #fff);
    overflow: hidden;
    padding: 54px 0 80px
}

.hero-in {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center
}

.hero-l h1 {
    font-size: clamp(38px, 5.4vw, 62px);
    margin-top: 10px
}

.hero-l .sub {
    color: var(--body);
    font-size: 17px;
    max-width: 460px;
    margin-top: 18px;
    margin-bottom: 2rem;
}

.hero-l .cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-l .num {
    font-family: "Urbanist";
    font-weight: 800;
    font-size: 20px
}

.hero-l .num:hover {
    color: var(--pink)
}

.hero-art {
    position: relative;
    height: 430px
}

.blob {
    position: absolute;
    border-radius: 46% 54% 56% 44%/52% 46% 54% 48%;
    background: linear-gradient(150deg, var(--violet-soft), var(--pink-soft));
    width: 330px;
    height: 330px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.phone {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 212px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 80px -36px rgba(40, 20, 60, .4);
    padding: 12px
}

.phone .scr {
    background: var(--violet-tint);
    border-radius: 22px;
    padding: 14px
}

.phone .vav {
    height: 118px;
    border-radius: 16px;
    background: linear-gradient(150deg, #B79BF0, #7B4FE0);
    display: grid;
    place-items: center;
    position: relative
}

.phone .vav .live {
    position: absolute;
    top: 9px;
    left: 9px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-family: "Urbanist";
    font-weight: 600;
    font-size: 9.5px;
    padding: 3px 8px;
    border-radius: 100px;
    display: inline-flex;
    gap: 5px;
    align-items: center
}

.phone .vav .live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7BE6A8
}

.phone .vav .wv {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 40px
}

.phone .vav .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, 26px)
    }
}

.phone .nm {
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 14px;
    margin-top: 11px
}

.phone .hd {
    font-size: 11px;
    color: var(--faint)
}

.phone .vbtns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 11px
}

.phone .vbtns b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.phone .vbtns .x {
    background: #EEEAF6;
    color: var(--faint)
}

.phone .vbtns .h {
    background: var(--pink);
    color: #fff
}

.phone .vbtns b svg {
    width: 17px;
    height: 17px
}

.fchip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px -22px rgba(40, 20, 60, .45);
    padding: 9px 13px;
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 12.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 5
}

.fchip .d {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff
}

.fchip .d svg {
    width: 13px;
    height: 13px
}

.fchip.f1 {
    top: 30px;
    right: 6%
}

.fchip.f2 {
    bottom: 48px;
    left: 0
}

/* quickstart */
.quickstart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    max-width: 440px;
    margin-top: 26px;
    box-shadow: 0 30px 60px -40px rgba(40, 20, 60, .4);
    flex-wrap: wrap
}

.qf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 14px;
    border-right: 1px solid var(--line)
}

.qf label {
    font-size: 10px;
    font-weight: 700;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-family: "Urbanist"
}

.qf select {
    border: none;
    background: none;
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    outline: none
}

/* ===== section scaffold ===== */
.sec {
    padding: 90px 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
}

/* ===== ABOUT (split) ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center
}

.scene {
    position: relative;
    height: 380px;
    border-radius: 24px;
    background: linear-gradient(160deg, #F2ECFD, #FDEAF4);
    overflow: hidden;
    display: block;
    place-items: center
}

.scene img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-c .lead {
    color: var(--body);
    margin-top: 14px
}

.about-c .lead+.lead {
    margin-top: 13px
}

.trust {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap
}

.trust .ti {
    flex: 1;
    min-width: 120px;
    text-align: center
}

.trust .ti .ci {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--violet-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 10px
}

.trust .ti .ci svg {
    width: 25px;
    height: 25px;
    color: var(--violet)
}

.trust .ti:nth-child(2) .ci {
    background: var(--pink-soft)
}

.trust .ti:nth-child(2) .ci svg {
    color: var(--pink)
}

.trust .ti b {
    font-family: "Urbanist";
    font-size: 14px;
    font-weight: 700;
    display: block
}

/* ===== STATS ===== */
.stats {
    background: var(--violet-tint)
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.stat {
    background: #fff;
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 30px 60px -50px rgba(40, 20, 60, .5)
}

.stat .si {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--violet), var(--pink));
    display: grid;
    place-items: center;
    margin: 0 auto 14px
}

.stat .si svg {
    width: 27px;
    height: 27px;
    color: #fff
}

.stat b {
    font-family: "Urbanist";
    font-weight: 800;
    font-size: 30px;
    display: block;
    color: var(--violet)
}

.stat span {
    font-size: 13.5px;
    color: var(--body)
}

/* ===== WHY ===== */
.whypoint {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 22px
}

.whypoint .wi {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--pink-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.whypoint .wi svg {
    width: 23px;
    height: 23px;
    color: var(--pink)
}

.whypoint h4 {
    font-size: 17px
}

.whypoint p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 3px
}

/* ===== HOW ===== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 48px
}

.hcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px 28px;
    text-align: center;
    position: relative;
    transition: .35s var(--ease)
}

.hcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 64px -42px rgba(40, 20, 60, .4)
}

.hcard .circ {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 40%, #FBEAF4, #EEE7FC);
    position: relative
}

.hcard .circ svg {
    width: 36px;
    height: 36px;
    color: var(--violet)
}

.hcard .circ b {
    position: absolute;
    bottom: -4px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 13px;
    border: 3px solid #fff
}

.hcard h4 {
    font-size: 19px
}

.hcard p {
    color: var(--body);
    font-size: 14px;
    margin-top: 8px
}

/* ===== CINCINNATI ===== */
.cincy {
    background: linear-gradient(160deg, #F7F3FE, #FDF1F8)
}

.cincy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 42px 0 0
}

.nb-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.nb-card .ni {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff
}

.nb-card .ni svg {
    width: 21px;
    height: 21px
}

.nb-card h4 {
    font-size: 16px
}

.nb-card p {
    font-size: 13px;
    color: var(--body);
    margin-top: 3px
}

.cov-copy {
    max-width: 760px;
    margin: 34px auto 0;
    text-align: center
}

.cov-copy p {
    color: var(--body)
}

.localbox {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px 28px;
    margin: 26px auto 0;
    max-width: 680px
}

.localbox .nb span {
    font-size: 12px;
    color: var(--body);
    font-weight: 600;
    display: block;
    font-family: "Urbanist"
}

.localbox .nb a {
    font-family: "Urbanist";
    font-weight: 800;
    font-size: 24px;
    color: var(--pink)
}

.localbox .nb a:hover {
    color: var(--pink-d)
}

.localbox .sep {
    width: 1px;
    height: 40px;
    background: var(--line)
}

/* ===== MEMBERS ===== */
.mem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.mem {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: .35s var(--ease)
}

.mem:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -42px rgba(40, 20, 60, .4)
}

.mem .ph {
    height: 120px;
    display: grid;
    place-items: center;
    position: relative
}

.mem .ph .wv {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 36px
}

.mem .ph .wv i {
    width: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.5s ease-in-out infinite
}

.mem .ph .live {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    font-family: "Urbanist";
    font-weight: 600;
    font-size: 9.5px;
    padding: 3px 9px;
    border-radius: 100px;
    display: inline-flex;
    gap: 5px;
    align-items: center
}

.mem .ph .live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7BE6A8
}

.mem .bd2 {
    padding: 16px 18px
}

.mem .nm {
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 15px
}

.mem .hd {
    font-size: 12px;
    color: var(--faint)
}

.mem .bd2 a {
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 12.5px;
    color: var(--pink);
    margin-top: 8px;
    display: inline-block
}

.mem-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 24px
}

/* ===== TESTIMONIALS ===== */
.tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px
}

.tcard p {
    font-size: 14.5px;
    color: var(--body);
    margin-bottom: 18px
}

.tcard .by {
    display: flex;
    align-items: center;
    gap: 12px
}

.tcard .by .a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 16px
}

.tcard .by b {
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 14px
}

.tcard .by small {
    display: block;
    font-size: 12px;
    color: var(--faint)
}

.t-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 24px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 780px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 13px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.fi.open {
    border-color: var(--pink);
    box-shadow: 0 24px 50px -40px rgba(238, 61, 150, .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 24px;
    font-family: "Urbanist";
    font-weight: 700;
    font-size: 16px;
    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 24px 22px;
    font-size: 14.5px;
    color: var(--body)
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(125deg, var(--violet), var(--pink));
    color: #fff;
    border-radius: 34px;
    margin: 0 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 84px 28px
}

.cta h2 {
    color: #fff;
    font-size: clamp(30px, 4.6vw, 52px);
    position: relative;
    z-index: 2
}

.cta p {
    color: rgba(255, 255, 255, .92);
    font-size: 17.5px;
    max-width: 520px;
    margin: 14px auto 0;
    position: relative;
    z-index: 2
}

.cta .num {
    display: block;
    font-family: "Urbanist";
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 36px);
    margin: 22px 0 18px;
    position: relative;
    z-index: 2
}

.cta .num:hover {
    color: var(--ink)
}

/* ===== FOOTER ===== */
footer {
    background: var(--violet-deep);
    color: rgba(255, 255, 255, .68);
    padding: 30px 0;
}

.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)
}

@media(max-width:980px) {
    .nav-links {
        display: none
    }

    .hero-in,
    .split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-art {
        order: -1;
        height: 380px
    }

    .scene {
        order: -1
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr
    }

    .how-grid,
    .cincy-grid,
    .tg {
        grid-template-columns: 1fr
    }

    .mem-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: 60px 0
    }

    .stat-grid,
    .mem-grid,
    .f-top {
        grid-template-columns: 1fr
    }

    .quickstart {
        flex-direction: column;
        align-items: stretch
    }

    .qf {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .fchip {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
