* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background: #000;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 28px;
    left: 46px;
    right: 46px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand img {
    width: 34px;
    height: 34px;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 25px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(22px);
}

.nav-pill a {
    position: relative;
    padding: 5px 10px;
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.49);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.nav-pill a:hover {
    color: white;
    background: radial-gradient(circle at top,
            rgba(133, 119, 241, .22),
            rgba(255, 255, 255, .07));
}

.nav-pill a.active {
    color: white;

    background:
        radial-gradient(circle at top,
            rgba(133, 119, 241, .22),
            rgba(255, 255, 255, .07));

    border: 0.5px solid rgba(255, 255, 255, .10);

    box-shadow:
        0 8px 22px rgba(111, 59, 210, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10);

    pointer-events: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 20px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);

    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.nav-cta:hover {
    color: white;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
}

.hero {
    min-height: 124vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -25%, #161020 0%, #050506 42%, #000 78%),
        #000;
    padding: 50px 24px 0;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 8;
    pointer-events: none;
}

.hero::before {
    left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 50% 40%, rgba(133, 119, 241, .12), transparent 34%),
        linear-gradient(to right, #000 0%, transparent 18%, transparent 82%, #000 100%);
}

.hero::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.hero-copy {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeUp 900ms ease both;
    padding-top: 90px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(70px, 7vw, 96px);
    line-height: 0.92;
    font-weight: 850;
    letter-spacing: -5px;
}

.hero p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(15px, 1.5vw, 21px);
    line-height: 1.5;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    height: 56px;

    padding: 0 34px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 750;
    letter-spacing: -.02em;

    white-space: nowrap;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease;
}

/* Primary */

.primary-btn {
    color: white;

    background:
        linear-gradient(
            135deg,
            #8d5cf6 0%,
            #7344dd 55%,
            #6635d4 100%
        );

    box-shadow:
        0 18px 45px rgba(133,119,241,.30),
        inset 0 1px 0 rgba(255,255,255,.20);
}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 28px 70px rgba(133,119,241,.42),
        inset 0 1px 0 rgba(255,255,255,.25);
}

/* Secondary */

.secondary-btn {

    color: white;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);
}

.secondary-btn:hover {

    transform: translateY(-4px);

    border-color: rgba(133,119,241,.45);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.06)
        );

    box-shadow:
        0 18px 45px rgba(133,119,241,.18),
        inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-visual {
    position: relative;
    z-index: 5;
    height: clamp(680px, 56vw, 900px);
    width: 100%;
    max-width: 1700px;
    margin: 60px auto 0;
}

.hero-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    width: 760px;
    height: 760px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 50% 45%,
            rgba(133, 119, 241, .24),
            rgba(111, 59, 210, .16) 25%,
            transparent 58%);
    filter: blur(55px);
    opacity: .95;
    z-index: 1;
    pointer-events: none;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: radial-gradient(circle at 50% 35%, black, transparent 64%);
    opacity: .20;
    z-index: 0;
    pointer-events: none;
}

.phone-mockup {
    position: absolute;
    left: 51.5%;
    top: 30px;
    height: clamp(570px, 54vw, 660px);
    transform: translateX(-50%) rotate(-5.7deg);
    transform-origin: center;
    z-index: 4;
    will-change: transform;
}



.chip {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    border-radius: 24px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .13),
            rgba(255, 255, 255, .06));

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(30px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 18px 60px rgba(0, 0, 0, .30),
        0 0 40px rgba(111, 59, 210, .08);

    overflow: hidden;


}

.chip:nth-child(odd)::after {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -40px;
    top: -40px;

    background: #8577F1;

    opacity: .12;

    filter: blur(60px);

    pointer-events: none;
}


.chip span {
    min-width: 0;
}

.chip b,
.chip small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.chip b {
    font-size: clamp(11px, 0.9vw, 14px);
    color: white;
}

.chip small {
    margin-top: 4px;
    font-size: clamp(10px, 0.8vw, 12px);
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- DESKTOP CHIPS ---------- */

.chip-1 {
    top: 0;
    left: calc(50% - 610px);
}

.chip-2 {
    top: 0;
    left: calc(50% - 380px);
}

.chip-3 {
    top: 105px;
    left: calc(50% - 500px);
}

.chip-4 {
    top: 210px;
    left: calc(50% - 610px);
}

.chip-5 {
    top: 210px;
    left: calc(50% - 380px);
}



.chip-6 {
    top: 0;
    right: calc(50% - 610px);
}

.chip-7 {
    top: 0;
    right: calc(50% - 380px);
}

.chip-8 {
    top: 105px;
    right: calc(50% - 500px);
}

.chip-9 {
    top: 210px;
    right: calc(50% - 610px);
}

.chip-10 {
    top: 210px;
    right: calc(50% - 380px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softReveal {
    from {
        opacity: 0;
        filter: blur(14px) brightness(.75);
    }

    to {
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.phone-mockup {
    opacity: 0;
    animation: softReveal 1000ms cubic-bezier(.22, 1, .36, 1) 520ms both;
}

.chip {
    opacity: 0;
    animation: softReveal 850ms cubic-bezier(.22, 1, .36, 1) both;
}

.chip-1 {
    animation-delay: 650ms;
}

.chip-2 {
    animation-delay: 760ms;
}

.chip-3 {
    animation-delay: 870ms;
}

.chip-4 {
    animation-delay: 980ms;
}

.chip-5 {
    animation-delay: 1090ms;
}

.chip-6 {
    animation-delay: 700ms;
}

.chip-7 {
    animation-delay: 810ms;
}

.chip-8 {
    animation-delay: 920ms;
}

.chip-9 {
    animation-delay: 1030ms;
}

.chip-10 {
    animation-delay: 1140ms;
}

@media (prefers-reduced-motion: reduce) {

    .phone-mockup,
    .chip {
        animation: none;
        opacity: 1;
        filter: none;
    }
}


@media (max-width: 640px) {
    .navbar {
        top: 20px;
        left: 14px;
        right: 14px;
        gap: 8px;
    }

    .brand {
        gap: 4px;
    }

    .brand img {
        width: 22px;
        height: 22px;
    }

    .brand span {
        display: none;
    }

    .nav-pill {
        display: flex;
        gap: 7px;
        padding: 8px 10px;
    }

    .nav-pill a {
        font-size: 10.5px;
        font-weight: 700;
    }

    .nav-cta {
        display: inline-flex;
        padding: 9px 12px;
        font-size: 11px;
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

    .hero-actions {
        gap: 18px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 18px 24px;
        font-size: 15px;
    }
}


.navbar {
    transition: transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.navbar.nav-hidden {
    transform: translateY(-120px);
}

.phone-mockup,
.chip {
    will-change: transform;
}

@media (max-width: 1200px) {
    .hero-visual {
        height: 820px;
        transform: scale(0.86);
        transform-origin: top center;
        width: 1220px;
        left: 50%;
        translate: -50% 0;
    }
}

@media (max-width: 900px) {

    .hero-copy {
        padding-top: 30px;
    }

    .navbar {
        top: 22px;
        left: 24px;
        right: 24px;
    }

    .brand {
        font-size: 22px;
        gap: 8px;
    }

    .brand img {
        width: 28px;
        height: 28px;
    }

    .navbar {
        gap: 10px;
    }

    .nav-pill {
        display: flex;
        gap: 1px;
        padding: 5px 5px;
    }

    .nav-pill a {
        font-size: 13px;
    }

    .nav-cta {
        display: inline-flex;
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        padding: 50px 18px 0;
    }

    .hero h1 {
        font-size: clamp(58px, 14vw, 84px);
        letter-spacing: -4px;
    }

    .hero p {
        max-width: 520px;
        font-size: clamp(16px, 3vw, 20px);
    }

    .hero-visual {
        height: 500px;
        transform: scale(0.78);
        transform-origin: top center;
        width: 1220px;
        left: 50%;
        translate: -50% 0;
        margin-top: 30px;
    }
}

@media (max-width: 560px) {

    .hero-copy {
        
        padding-top: 0px;
    }

    .hero {
        min-height: auto;
        padding-top: 145px;
    }

    .hero h1 {
        margin: 0;
        font-size: clamp(54px, 15vw, 72px);
    }

    .hero-actions {
        gap: 14px;
    }

    .primary-btn,
    .secondary-btn{
        width: 210px;
        height: 52px;
        font-size:15px;
    }

    .hero-visual {
        height: 390px;
        transform: scale(0.64);
        transform-origin: top center;
        width: 1220px;
        left: 50%;
        translate: -50% 0;
        margin-top: 30px;
    }
}


/* =========================================
   WHAT IS MINISTRY
========================================= */

.what-section {
    position: relative;
    overflow: hidden;
    max-width: none;
    margin: 0;
    padding: 150px 30px;
    background: #000;
}

.what-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 520px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 50% 0%,
            rgba(111, 59, 210, .22),
            rgba(111, 59, 210, .08) 28%,
            transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.what-badge {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.what-top {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center;
}

.what-left h2 {
    margin: 0;
    font-size: clamp(64px, 7vw, 110px);
    line-height: .92;
    letter-spacing: -5px;
    font-weight: 850;
}

.what-right {
    position: relative;
    max-width: 620px;

    padding: 46px 48px;
    border-radius: 34px;

    background:
        radial-gradient(circle at top right,
            rgba(133, 119, 241, .12),
            transparent 36%),
        rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 35px 90px rgba(0, 0, 0, .28);

    backdrop-filter: blur(18px);
}

.what-description {
    margin: 0 0 54px;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(20px, 1.7vw, 25px);
    line-height: 1.65;
}

.what-list {
    display: flex;
    flex-direction: column;
}

.what-list div {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.what-list div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.what-list strong {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 850;
}

.what-list span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.55;
}

/* Tablet */
@media (max-width: 950px) {
    .what-section {
        padding: 110px 24px;
    }

    .what-badge {
        margin-bottom: 48px;
    }

    .what-top {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .what-left,
    .what-right {
        max-width: 760px;
        margin: 0 auto;
    }

    .what-left h2 {
        font-size: clamp(54px, 10vw, 82px);
        letter-spacing: -4px;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .what-section {
        padding: 90px 18px;
    }

    .what-badge {
        margin-bottom: 38px;
    }

    .what-right {
        padding: 32px 26px;
        border-radius: 28px;
    }

    .what-left h2 {
        font-size: clamp(46px, 13vw, 66px);
        letter-spacing: -3px;
    }

    .what-description {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .what-list div {
        padding: 24px 0;
    }

    .what-list strong {
        font-size: 26px;
    }

    .what-list span {
        font-size: 16px;
    }
}



.app-experience-section {
    position: relative;
    padding: 130px 24px 170px;

}

.experience-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    font-weight: 800;
}

.experience-heading h2 {
    margin: 0;
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 850;
}

.experience-heading p {
    max-width: 680px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .6);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.45;
}

.experience-grid {
    max-width: 1460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.experience-card {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
        #101013;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 40px 90px rgba(0, 0, 0, .35);
}

.experience-card-large {
    min-height: 700px;
}


/* imagen visible primero */
.experience-card img,
.experience-card-large img {
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: auto;
    transform: translateX(-50%) scale(1);
    width: min(99%, 570px);
    z-index: 2;
    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1),
        filter .7s cubic-bezier(.22, 1, .36, 1),
        opacity .7s cubic-bezier(.22, 1, .36, 1);
    filter: drop-shadow(0 28px 55px rgba(0, 0, 0, .55));
}

/* overlay oscuro/blur */
.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, .35), rgba(0, 0, 0, .78)),
        radial-gradient(circle at 70% 70%, rgba(111, 59, 210, .35), transparent 36%);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

/* texto oculto primero */
.experience-copy {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 42px;
    z-index: 5;
    max-width: 560px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

.feature-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: #a896ff;
    font-size: 14px;
    font-weight: 850;
}

.experience-copy h3 {
    margin: 0;
    font-size: clamp(34px, 3vw, 54px);
    line-height: .95;
    letter-spacing: -2.5px;
}

.experience-copy p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.45;
}

/* hover */
.experience-card:hover::after {
    opacity: 1;
}

.experience-card:hover .experience-copy {
    opacity: 1;
    transform: translateY(0);
}

.experience-card:hover img {
    transform: translateX(-50%) scale(1.06);
    filter: blur(3px) brightness(.55) drop-shadow(0 28px 55px rgba(0, 0, 0, .55));
}

/* Tablet */
@media (max-width: 1000px) {
    .app-experience-section {
        padding: 100px 22px 130px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .experience-card,
    .experience-card-large {
        grid-row: auto;
        min-height: 680px;
    }

    .experience-card img,
    .experience-card-large img {
        width: min(90%, 520px);
        top: 45px;
        bottom: auto;
    }
}

/* Mobile: texto siempre visible porque no hay hover real */
@media (max-width: 560px) {
    .app-experience-section {
        padding: 80px 18px 100px;
    }

    .experience-heading {
        margin-bottom: 52px;
    }

    .experience-heading h2 {
        font-size: clamp(44px, 13vw, 62px);
        letter-spacing: -3px;
    }

    .experience-card,
    .experience-card-large {
        min-height: 620px;
        border-radius: 30px;
    }

    .experience-card::after {
        opacity: 1;
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25), rgba(0, 0, 0, .82)),
            radial-gradient(circle at 70% 70%, rgba(111, 59, 210, .32), transparent 38%);
    }

    .experience-copy {
        left: 28px;
        right: 28px;
        bottom: 28px;
        opacity: 1;
        transform: none;
    }

    .experience-copy h3 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .experience-copy p {
        font-size: 15.5px;
    }

    .experience-card img,
    .experience-card-large img {
        width: min(92%, 390px);
        top: 55px;
        bottom: auto;
        filter: brightness(.8) drop-shadow(0 28px 55px rgba(0, 0, 0, .55));
    }
}

/* =========================================
   MINISTRY PRO
========================================= */

/* =========================================
   MINISTRY PRO HERO
========================================= */

.pro-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 24px 110px;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 70px;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    overflow: hidden;
}

.pro-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(133, 119, 241, .28), transparent 36%),
        radial-gradient(circle at 85% 55%, rgba(168, 85, 247, .18), transparent 32%);
    filter: blur(10px);
}

.pro-hero-copy {
    position: relative;
    z-index: 2;
}

.pro-hero-copy h1 {
    max-width: 900px;
    margin: 24px 0 0;
    font-size: clamp(68px, 7vw, 118px);
    line-height: .88;
    letter-spacing: -6px;
    font-weight: 850;
}

.pro-hero-copy p {
    max-width: 660px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 21px;
    line-height: 1.55;
}

.pro-hero-btn {
    margin-top: 42px;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    height: 58px;
    padding: 0 28px;
    border-radius: 999px;

    background: linear-gradient(135deg, #8b5cf6, #6d3bd2);
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 850;

    box-shadow:
        0 18px 50px rgba(133, 119, 241, .34),
        inset 0 1px 0 rgba(255, 255, 255, .18);

    transition: transform .35s ease, box-shadow .35s ease;
}

.pro-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 70px rgba(133, 119, 241, .44),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.pro-hero-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 38px;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .28), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .48);
    backdrop-filter: blur(24px);
}

/* Pro hero initial animation */

.pro-hero-copy,
.pro-hero-card {
    opacity: 0;
    animation: proFadeUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.pro-hero-copy {
    animation-delay: .12s;
}

.pro-hero-card {
    animation-delay: .34s;
}

.pro-card-feature {
    opacity: 0;
    animation: proFadeUp .75s cubic-bezier(.22, 1, .36, 1) forwards;
}

.pro-card-feature:nth-child(2) {
    animation-delay: .55s;
}

.pro-card-feature:nth-child(3) {
    animation-delay: .68s;
}

.pro-card-feature:nth-child(4) {
    animation-delay: .81s;
}

@keyframes proFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pro-card-top {
    padding: 8px 6px 26px;
}

.pro-card-top span {
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.pro-card-top strong {
    display: block;
    margin-top: 12px;
    color: white;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -1.7px;
}

.pro-card-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin-top: 12px;
    border-radius: 24px;

    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
}

.pro-card-feature i {
    width: 26px;
    height: 26px;
    color: #b8a9ff;
    flex-shrink: 0;
}

.pro-card-feature strong {
    display: block;
    font-size: 17px;
}

.pro-card-feature small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
}

@media (max-width: 950px) {
    .pro-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }

    .pro-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .pro-hero-card {
        max-width: 520px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .pro-hero {
        padding: 135px 18px 90px;
    }

    .pro-hero-copy h1 {
        font-size: clamp(52px, 14vw, 76px);
        letter-spacing: -4px;
    }

    .pro-hero-copy p {
        font-size: 17px;
    }

    .pro-hero-card {
        padding: 24px;
        border-radius: 32px;
    }
}

.pro-hero-card {
    animation:
        proFadeUp .9s cubic-bezier(.22, 1, .36, 1) .34s forwards,
        proCardFloat 8s ease-in-out 1.3s infinite;
}

@keyframes proCardFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}



.pro-benefits-section {
    max-width: 1450px;
    margin: 0 auto;
    padding: 40px 24px 180px;
}

.pro-benefits-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.pro-benefits-header h2 {
    margin: 24px auto 0;
    font-size: clamp(52px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -5px;
}

.pro-benefits-header p {
    max-width: 760px;
    margin: 28px auto 0;

    color: rgba(255, 255, 255, .62);

    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
}

.pro-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pro-benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 34px;
    border-radius: 34px;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .20), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .35);

    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.pro-card-kicker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 850;
}

.pro-card-visual {
    position: relative;
    z-index: 2;
    height: 150px;
    margin-top: 34px;
    border-radius: 26px;
    overflow: hidden;

    background:
        radial-gradient(circle at 70% 20%, rgba(133, 119, 241, .25), transparent 45%),
        rgba(255, 255, 255, .045);

    border: 1px solid rgba(255, 255, 255, .08);
}

.pro-card-visual>i {
    position: absolute;
    right: 24px;
    top: 22px;
    width: 86px;
    height: 86px;
    color: rgba(255, 255, 255, .10);
}

/* mini list */
.pro-mini-list {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pro-mini-list span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 750;
}

/* Unlimited groups visual */
.mini-group {
    position: absolute;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
}

.mini-group.one {
    left: 22px;
    top: 28px;
}

.mini-group.two {
    left: 120px;
    top: 58px;
}

.mini-group.three {
    left: 28px;
    bottom: 22px;
}

/* Customization visual */
.color-dot {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .22);
}

.color-dot.purple {
    left: 28px;
    top: 36px;
    background: #8b5cf6;
}

.color-dot.blue {
    left: 78px;
    top: 70px;
    background: #3b82f6;
}

.color-dot.green {
    left: 130px;
    top: 38px;
    background: #22c55e;
}

.color-dot.orange {
    left: 182px;
    top: 72px;
    background: #f97316;
}

/* Advanced tools visual */
.tool-node {
    position: absolute;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .10);
}

.tool-node i {
    width: 22px;
    height: 22px;
    color: #b8a9ff;
}

.tool-node.calendar {
    left: 30px;
    top: 28px;
}

.tool-node.chart {
    left: 100px;
    top: 78px;
}

.tool-node.message {
    left: 170px;
    top: 32px;
}

/* Leaders visual */
.leader-avatar {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .8), transparent 18%),
        linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: 2px solid rgba(255, 255, 255, .18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}

.leader-avatar.a {
    left: 34px;
    top: 28px;
}

.leader-avatar.b {
    left: 94px;
    top: 72px;
}

.leader-avatar.c {
    left: 154px;
    top: 32px;
}

.pro-benefit-card::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(133, 119, 241, .18);
    filter: blur(45px);
    opacity: .7;
}

.pro-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(133, 119, 241, .32);
    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .28), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
}

.pro-benefit-card span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .58);
    font-size: 15px;
    font-weight: 850;
}



.pro-benefit-card h3 {
    position: relative;
    z-index: 2;
    margin: 28px 0 0;
    font-size: clamp(34px, 3vw, 50px);
    line-height: .95;
    letter-spacing: -2px;
}

.pro-benefit-card p {
    position: relative;
    z-index: 2;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.5;
}



@media (max-width: 1100px) {
    .pro-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .pro-benefits-section {
        padding: 100px 18px;
    }

    .pro-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pro-benefit-card {
        min-height: 360px;
    }
}

.pro-features {
    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.pro-item {
    padding: 28px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: left;
}

.pro-item h3 {
    margin: 0 0 12px;

    font-size: 20px;

    font-weight: 800;
}

.pro-item span {
    color: rgba(255, 255, 255, .65);

    line-height: 1.5;
}

.pro-btn {
    display: inline-flex;

    margin-top: 60px;

    padding: 18px 28px;

    border-radius: 999px;

    background: #6f3bd2;

    color: white;

    text-decoration: none;

    font-weight: 800;
}

@media (max-width: 1000px) {

    .pro-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro-card {
        padding: 70px 40px;
    }
}

@media (max-width: 560px) {

    .pro-section {
        padding: 90px 18px 100px;
    }

    .pro-features {
        grid-template-columns: 1fr;
    }

    .pro-card {
        padding: 50px 24px;
        border-radius: 34px;
    }

    .pro-card h2 {
        font-size: clamp(44px, 12vw, 62px);
        letter-spacing: -3px;
    }

    .pro-card p {
        font-size: 17px;
    }
}

/* Support Mission visual */

.support-visual {
    display: grid;
    place-items: center;

}

.pro-badge-preview {
    height: 40px;
    top: -40px;
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px 14px 16px;
    border-radius: 999px;

    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border: 1px solid rgba(255, 255, 255, .18);

    box-shadow:
        0 18px 45px rgba(124, 58, 237, .35),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.pro-badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 10px 28px rgba(251, 191, 36, .35);
}

.pro-badge-icon i {
    width: 20px;
    height: 20px;
    color: white;
    fill: white;
}

.pro-badge-preview span {
    color: white !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: -.5px;
}

.support-mini-profile {
    position: absolute;
    z-index: 2;

    bottom: 22px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 13px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
}

.profile-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.support-mini-profile strong {
    display: block;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 850;
}

.support-mini-profile small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    font-weight: 700;
}

/* Dashboard visual */

.dashboard-visual {
    display: grid;
    place-items: center;
}

.dashboard-window {
    position: relative;
    z-index: 3;
    width: 170px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.dashboard-top {
    height: 10px;
    width: 70px;
    border-radius: 999px;
    background: rgba(184, 169, 255, .65);
    margin-bottom: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.dashboard-grid span {
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-chart {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 24px;
    width: 70px;
    height: 48px;
    display: flex;
    align-items: end;
    gap: 6px;
    padding: 9px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.dashboard-chart span {
    flex: 1;
    border-radius: 999px;
    background: #b8a9ff;
}

.dashboard-chart span:nth-child(1) {
    height: 18px;
}

.dashboard-chart span:nth-child(2) {
    height: 30px;
}

.dashboard-chart span:nth-child(3) {
    height: 24px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;
    padding: 80px 24px 34px;
    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .12), transparent 35%),
        #000;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.footer-logo img {
    width: 34px;
    height: 34px;
}

.footer-brand p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.5;
}

.footer-social {
    margin-top: 34px;
}

.footer-social>span {
    display: block;
    color: rgba(255, 255, 255, .42);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .66);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.footer-social-links a:hover {
    color: white;
    background: rgba(133, 119, 241, .16);
    border-color: rgba(133, 119, 241, .35);
    transform: translateY(-2px);
}



.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 54px;
}

.footer-links h4 {
    margin: 0 0 18px;
    color: white;
    font-size: 14px;
    font-weight: 800;
}

.footer-links a {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: 15px;
    transition: color .25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 70px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255, 255, 255, .42);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 760px) {
    .site-footer {
        padding: 64px 18px 30px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 46px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-bottom {
        margin-top: 54px;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FEATURES PAGE - HERO
========================================= */

.features-hero-ministry {
    min-height: 100vh;
    padding: 140px 24px 110px;
    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .24), transparent 38%),
        #000;
    overflow: hidden;
}

.features-hero-copy {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.features-hero-copy h1 {
    margin: 4px auto 0;
    font-size: clamp(70px, 7vw, 96px);
    line-height: .9;
    letter-spacing: -6px;
    font-weight: 850;
}

.features-hero-copy p {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
}

/* Layout */
.ministry-flow-premium {
    max-width: 1220px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 22px;
    align-items: stretch;
}

/* Left list */
.ministry-types {
    display: grid;
    gap: 13px;
}

.ministry-type {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 105px;
    padding: 20px 22px;

    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .10);

    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));

    color: white;
    cursor: pointer;
    text-align: left;

    transition:
        transform .32s ease,
        border-color .32s ease,
        background .32s ease,
        box-shadow .32s ease;
}

.ministry-type::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 150px;
    transition: opacity .35s ease, transform .55s ease;
}

.ministry-type:hover::before,
.ministry-type.active::before {
    opacity: .26;
    transform: scale(1.05);
}

.ministry-type:hover,
.ministry-type.active {
    transform: translateY(-3px);
    border-color: rgba(133, 119, 241, .42);
    box-shadow:
        0 20px 70px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.ministry-type.active::after {
    content: "✓";
    position: absolute;
    top: 22px;
    right: 22px;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #8b5cf6;
    color: white;

    font-size: 15px;
    font-weight: 900;

    box-shadow: 0 0 28px rgba(139, 92, 246, .45);
}

.type-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;

    display: grid;
    place-items: center;

    font-size: 31px;
    font-weight: 900;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);

    flex-shrink: 0;
}

.ministry-type strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -1px;
}

.ministry-type small {
    display: block;
    margin-top: 9px;
    max-width: 230px;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    line-height: 1.35;
}

/* Per type color */
.worship-type {
    --type-color: 139, 92, 246;
}

.small-type {
    --type-color: 59, 130, 246;
}

.missions-type {
    --type-color: 74, 222, 128;
}

.care-type {
    --type-color: 236, 72, 153;
}

.worship-type:hover,
.worship-type.active {
    border-color: rgba(139, 92, 246, .55);
    background:
        radial-gradient(circle at 90% 20%, rgba(139, 92, 246, .26), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
}

.small-type:hover,
.small-type.active {
    border-color: rgba(59, 130, 246, .52);
    background:
        radial-gradient(circle at 90% 20%, rgba(59, 130, 246, .22), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
}

.missions-type:hover,
.missions-type.active {
    border-color: rgba(74, 222, 128, .44);
    background:
        radial-gradient(circle at 90% 20%, rgba(74, 222, 128, .18), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
}

.care-type:hover,
.care-type.active {
    border-color: rgba(236, 72, 153, .46);
    background:
        radial-gradient(circle at 90% 20%, rgba(236, 72, 153, .20), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
}

/* Subtle icons in list */
.worship-type::before {
    background-image:
        linear-gradient(120deg, transparent, rgba(139, 92, 246, .18)),
        url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='60' y='150' font-size='145' fill='white' opacity='.7'%3E♪%3C/text%3E%3C/svg%3E");
}

.small-type::before {
    background-image:
        linear-gradient(120deg, transparent, rgba(59, 130, 246, .16)),
        url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='85' cy='88' r='28' fill='white' opacity='.55'/%3E%3Ccircle cx='135' cy='88' r='28' fill='white' opacity='.38'/%3E%3Ccircle cx='110' cy='128' r='42' fill='white' opacity='.28'/%3E%3C/svg%3E");
}

.missions-type::before {
    background-image:
        linear-gradient(120deg, transparent, rgba(74, 222, 128, .14)),
        url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='110' cy='110' r='58' fill='none' stroke='white' stroke-width='10' opacity='.45'/%3E%3Cpath d='M55 110h110M110 52c24 28 24 88 0 116M110 52c-24 28-24 88 0 116' stroke='white' stroke-width='8' fill='none' opacity='.35'/%3E%3C/svg%3E");
}

.care-type::before {
    background-image:
        linear-gradient(120deg, transparent, rgba(236, 72, 153, .14)),
        url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 165S55 132 55 88c0-25 31-39 55-12 24-27 55-13 55 12 0 44-55 77-55 77Z' fill='white' opacity='.45'/%3E%3C/svg%3E");
}

/* Right card */
.ministry-tools-card {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    padding: 48px;
    border-radius: 34px;

    border: 1px solid rgba(255, 255, 255, .11);

    background:
        radial-gradient(circle at 78% 8%, rgba(var(--panel-color, 139, 92, 246), .28), transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));

    box-shadow:
        0 40px 100px rgba(0, 0, 0, .38),
        inset 0 1px 0 rgba(255, 255, 255, .06);

    transition:
        border-color .35s ease,
        background .35s ease;
}

.ministry-tools-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at 75% 18%, rgba(var(--panel-color, 139, 92, 246), .18), transparent 38%);
    pointer-events: none;
}

.tool-bg {
    position: absolute;
    inset: 0;

    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 48%;

    opacity: .13;

    transition:
        opacity .35s ease,
        transform .5s cubic-bezier(.22, 1, .36, 1),
        background-image .25s ease;
}

.ministry-tools-card:hover .tool-bg {
    opacity: .18;
    transform: scale(1.04);
}

.ministry-tools-card>*:not(.tool-bg) {
    position: relative;
    z-index: 2;
}

.tool-label {
    color: rgb(var(--panel-color, 139, 92, 246));
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ministry-tools-card h3 {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: clamp(42px, 4vw, 70px);
    line-height: .95;
    letter-spacing: -3px;
}

.tool-description {
    max-width: 540px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 18px;
    line-height: 1.55;
}

.tool-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 600px;
}

.tool-list div {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 20px;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .82);
    font-weight: 780;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.tool-list div:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .095);
    border-color: rgba(var(--panel-color, 139, 92, 246), .34);
}

.tool-list div span {
    color: rgb(var(--panel-color, 139, 92, 246));
    font-size: 19px;
    width: 22px;
}

/* Panel background SVGs */
.ministry-tools-card[data-panel="worship"] {
    --panel-color: 139, 92, 246;
}

.ministry-tools-card[data-panel="small"] {
    --panel-color: 59, 130, 246;
}

.ministry-tools-card[data-panel="missions"] {
    --panel-color: 74, 222, 128;
}

.ministry-tools-card[data-panel="care"] {
    --panel-color: 236, 72, 153;
}

.ministry-tools-card[data-panel="worship"] .tool-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='480' height='480' viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 160c95-42 170-50 260-20M105 210c100-42 185-50 275-18M100 260c112-42 190-45 275-12' stroke='white' stroke-width='4' opacity='.55' fill='none'/%3E%3Ctext x='170' y='360' font-size='230' fill='white' opacity='.8'%3E♪%3C/text%3E%3C/svg%3E");
}

.ministry-tools-card[data-panel="small"] .tool-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='480' height='480' viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='190' cy='170' r='55' fill='white' opacity='.55'/%3E%3Ccircle cx='290' cy='170' r='55' fill='white' opacity='.38'/%3E%3Ccircle cx='240' cy='270' r='86' fill='white' opacity='.25'/%3E%3Cpath d='M120 350c25-72 215-72 240 0' stroke='white' stroke-width='18' opacity='.26' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ministry-tools-card[data-panel="missions"] .tool-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='480' height='480' viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='240' cy='240' r='145' fill='none' stroke='white' stroke-width='12' opacity='.55'/%3E%3Cpath d='M95 240h290M240 95c55 75 55 215 0 290M240 95c-55 75-55 215 0 290' stroke='white' stroke-width='10' fill='none' opacity='.42'/%3E%3Cpath d='M120 160c90 40 155 40 240 0M120 320c90-40 155-40 240 0' stroke='white' stroke-width='8' fill='none' opacity='.28'/%3E%3C/svg%3E");
}

.ministry-tools-card[data-panel="care"] .tool-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='480' height='480' viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M240 350S110 270 110 165c0-62 76-96 130-30 54-66 130-32 130 30 0 105-130 185-130 185Z' fill='white' opacity='.58'/%3E%3Cpath d='M130 365h220' stroke='white' stroke-width='18' opacity='.26' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Entrance */
.features-hero-copy,
.ministry-type,
.ministry-tools-card {
    opacity: 0;
    animation: featuresFadeUp .9s cubic-bezier(.22, 1, .36, 1) both;
}

.features-hero-copy {
    animation-delay: .05s;
}

.ministry-type:nth-child(1) {
    animation-delay: .35s;
}

.ministry-type:nth-child(2) {
    animation-delay: .45s;
}

.ministry-type:nth-child(3) {
    animation-delay: .55s;
}

.ministry-type:nth-child(4) {
    animation-delay: .65s;
}

.ministry-tools-card {
    animation-delay: .48s;
}

@keyframes featuresFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .ministry-flow-premium {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .features-hero-ministry {
        padding-top: 150px;
    }
}

@media (max-width: 560px) {
    .features-hero-ministry {
        padding: 140px 18px 90px;
    }

    .features-hero-copy h1 {
        font-size: clamp(50px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .features-hero-copy p {
        font-size: 16.5px;
    }

    .ministry-flow-premium {
        margin-top: 54px;
    }

    .ministry-type {
        min-height: 94px;
        padding: 18px;
        border-radius: 22px;
    }

    .type-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 26px;
    }

    .ministry-type strong {
        font-size: 21px;
    }

    .ministry-tools-card {
        padding: 34px;
        min-height: auto;
    }

    .tool-bg {
        background-size: 75%;
        opacity: .08;
    }

    .tool-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .features-hero-copy,
    .ministry-type,
    .ministry-tools-card {
        animation: none;
        opacity: 1;
    }

    .ministry-type,
    .ministry-tools-card,
    .tool-list div {
        transition: none;
    }
}



.feature-deep-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 24px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.feature-deep-copy h2 {
    margin: 24px 0 50px;
    font-size: clamp(52px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -5px;
}

.feature-deep-copy p {
    max-width: 620px;
    margin: 24px 0 100px;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.feature-deep-list {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-deep-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.feature-deep-list i {
    width: 19px;
    height: 19px;
    color: #8b5cf6;
}

.feature-groups-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.feature-groups-visual::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(133, 119, 241, .20), transparent 65%);
    filter: blur(55px);
    pointer-events: none;
}

.groups-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 28px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 78% 0%, rgba(133, 119, 241, .24), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
}

.groups-panel::before {
    content: "";
    position: absolute;
    inset: 95px 28px auto 28px;
    height: 92px;
    border-radius: 28px;
    background: radial-gradient(circle at 70% 50%, rgba(139, 92, 246, .34), transparent 62%);
    filter: blur(24px);
    opacity: .9;
    pointer-events: none;
}

.groups-panel>* {
    position: relative;
    z-index: 2;
}

.groups-panel-header {
    padding: 12px 8px 24px;
}

.groups-panel-header span {
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.groups-panel-header strong {
    display: block;
    margin-top: 8px;
    color: white;
    font-size: 30px;
    letter-spacing: -1.5px;
}

.group-type-preview {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 19px 20px;
    margin-top: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    transform: scale(.985);
}

.group-type-preview.active {
    transform: scale(1);
    background:
        radial-gradient(circle at 90% 20%, rgba(139, 92, 246, .25), transparent 42%),
        rgba(255, 255, 255, .075);
    border-color: rgba(139, 92, 246, .45);
}

.group-type-preview i {
    width: 29px;
    height: 29px;
    color: rgba(255, 255, 255, .86);
}

.group-type-preview.active i {
    color: #b8a9ff;
}

.group-type-preview strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.6px;
}

.group-type-preview small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.groups-panel-summary {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.groups-panel-summary div {
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    gap: 8px;
}

.groups-panel-summary i {
    width: 18px;
    height: 18px;
    color: #b8a9ff;
}

.groups-panel-summary span {
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    font-weight: 750;
}

.groups-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(24, 24, 28, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.groups-floating-card i {
    width: 22px;
    height: 22px;
    color: #b8a9ff;
}

.groups-floating-card strong {
    display: block;
    font-size: 15px;
}

.groups-floating-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
}

.card-event {
    top: 85px;
    right: -80px;
    animation: softFloat 8s ease-in-out infinite;
}

.card-chat {
    bottom: 200px;
    right: -20px;
    animation: softFloat 10s ease-in-out infinite;
}

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1000px) {
    .feature-deep-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .feature-deep-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-deep-list {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-deep-section {
        padding: 100px 18px;
    }

    .feature-deep-copy h2 {
        font-size: clamp(46px, 13vw, 66px);
        letter-spacing: -3px;
    }

    .feature-groups-visual {
        min-height: auto;
    }

    .groups-panel {
        padding: 22px;
        border-radius: 30px;
    }

    .groups-floating-card {
        display: none;
    }

    .groups-panel-summary {
        grid-template-columns: 1fr;
    }
}

.group-type-preview {
    cursor: pointer;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        opacity .3s ease;
}

.group-type-preview:hover {
    transform: translateY(-2px) scale(.995);
    border-color: rgba(139, 92, 246, .28);
}


/* =========================================
   FEATURE PRAYER SECTION
========================================= */

.feature-prayer-section {
    position: relative;
    max-width: relative;
    margin: 0 auto;
    padding: 10px 160px 180px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    overflow: hidden;
}

.prayer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.prayer-orb-one {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 160px;
    background: rgba(133, 119, 241, .16);
}

.prayer-orb-two {
    width: 520px;
    height: 520px;
    right: -160px;
    bottom: 120px;
    background: rgba(236, 72, 153, .10);
}

.prayer-section-copy {
    position: relative;
    z-index: 2;
}

.prayer-section-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(60px, 7vw, 112px);
    line-height: .9;
    letter-spacing: -6px;
}

.prayer-section-copy p {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.prayer-feature-pills {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.prayer-feature-pills div {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 17px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.prayer-feature-pills i {
    width: 19px;
    height: 19px;
    color: #b8a9ff;
}

.prayer-visual {
    position: relative;
    min-height: 660px;
    display: grid;
    place-items: center;
}

.prayer-visual::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(133, 119, 241, .22), transparent 65%);
    filter: blur(60px);
}

.prayer-phone-card {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    padding: 28px;
    border-radius: 40px;

    background:
        radial-gradient(circle at 75% 0%, rgba(133, 119, 241, .24), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 45px 110px rgba(0, 0, 0, .48);
}

.prayer-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prayer-phone-header span {
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -1px;
}

.prayer-phone-header i {
    width: 24px;
    height: 24px;
    color: #b8a9ff;
}

.prayer-tabs {
    margin-top: 22px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;

    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.prayer-tabs span {
    padding: 9px 10px;
    border-radius: 999px;
    text-align: center;
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
    font-weight: 750;
}

.prayer-tabs .active {
    color: white;
    background: rgba(133, 119, 241, .55);
}

.prayer-request-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;

    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.prayer-request-card.blue {
    background:
        radial-gradient(circle at 90% 10%, rgba(96, 165, 250, .28), transparent 40%),
        linear-gradient(145deg, rgba(59, 130, 246, .36), rgba(59, 130, 246, .14));
}

.prayer-request-card.orange {
    background:
        radial-gradient(circle at 90% 10%, rgba(251, 146, 60, .26), transparent 42%),
        linear-gradient(145deg, rgba(249, 115, 22, .34), rgba(249, 115, 22, .13));
}

.prayer-request-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prayer-request-top strong {
    font-size: 16px;
}

.prayer-request-top small {
    color: rgba(255, 255, 255, .58);
}

.prayer-request-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.45;
}

.prayer-request-bottom {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prayer-request-bottom span {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.prayer-request-bottom i {
    width: 17px;
    height: 17px;
}

.prayer-floating-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 22px;

    background: rgba(24, 24, 28, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.prayer-floating-card i {
    width: 22px;
    height: 22px;
    color: #b8a9ff;
}

.prayer-floating-card strong {
    display: block;
    font-size: 15px;
}

.prayer-floating-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
}

.prayer-count-card {
    top: 20px;
    right: 0px;
    animation: softFloat 9s ease-in-out infinite;
}

.prayer-streak-card {
    bottom: 180px;
    left: -50px;
    animation: softFloat 10s ease-in-out infinite;
}

.prayer-answer-card {
    bottom: 30px;
    right: 40px;
    animation: softFloat 11s ease-in-out infinite;
}

/* Responsive */

@media (max-width: 1000px) {
    .feature-prayer-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .prayer-section-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .prayer-feature-pills {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-prayer-section {
        padding: 100px 18px;
    }

    .prayer-section-copy h2 {
        font-size: clamp(52px, 15vw, 76px);
        letter-spacing: -4px;
    }

    .prayer-section-copy p {
        font-size: 17px;
    }

    .prayer-visual {
        min-height: auto;
    }

    .prayer-phone-card {
        padding: 22px;
        border-radius: 32px;
    }

    .prayer-floating-card {
        display: none;
    }
}


/* =========================================
   FEATURE DAILY PRAYER SECTION
========================================= */

.feature-daily-prayer-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 160px 30px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.daily-prayer-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(56px, 6vw, 104px);
    line-height: .9;
    letter-spacing: -5px;
}

.daily-prayer-copy p {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.daily-prayer-visual {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
}

.daily-prayer-visual::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(251, 146, 60, .16), transparent 65%);
    filter: blur(65px);
}

.daily-prayer-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    padding: 42px;
    border-radius: 42px;

    background:
        radial-gradient(circle at 75% 0%, rgba(251, 146, 60, .24), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 45px 110px rgba(0, 0, 0, .48);
}

.daily-label {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.daily-streak {
    margin-top: 34px;
    display: grid;
    place-items: center;
    text-align: center;
}

.daily-streak i {
    width: 54px;
    height: 54px;
    color: #f97316;
    filter: drop-shadow(0 0 24px rgba(249, 115, 22, .45));
}

.daily-streak strong {
    margin-top: 20px;
    font-size: 118px;
    line-height: .8;
    letter-spacing: -6px;
}

.daily-streak span {
    margin-top: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 18px;
    font-weight: 750;
}

.daily-progress {
    margin: 44px auto 0;
    height: 10px;
    max-width: 340px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.daily-progress div {
    width: 74%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    box-shadow: 0 0 30px rgba(249, 115, 22, .38);
}

.daily-actions {
    margin-top: 34px;
    display: grid;
    gap: 12px;
}

.daily-actions div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;

    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.daily-actions i {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.daily-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;

    background: rgba(24, 24, 28, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.daily-floating-card i {
    width: 22px;
    height: 22px;
    color: #fbbf24;
}

.daily-floating-card strong {
    display: block;
    font-size: 15px;
}

.daily-floating-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
}

.daily-plan-card {
    top: 90px;
    right: 10px;
    animation: softFloat 9s ease-in-out infinite;
}

.daily-random-card {
    top: 230px;
    left: -50px;
    animation: softFloat 10s ease-in-out infinite;
}

@media (max-width: 1000px) {
    .feature-daily-prayer-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .daily-prayer-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .daily-prayer-copy .feature-deep-list {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-daily-prayer-section {
        padding: 100px 18px;
    }

    .daily-prayer-copy h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .daily-prayer-visual {
        min-height: auto;
    }

    .daily-prayer-card {
        padding: 32px;
        border-radius: 34px;
    }

    .daily-floating-card {
        display: none;
    }
}


/* =========================================
   FEATURE SCRIPTURE SECTION
========================================= */

.feature-scripture-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 170px 24px;
    text-align: center;
}

.scripture-header h2 {
    margin: 24px auto 0;
    max-width: 980px;
    font-size: clamp(58px, 7vw, 108px);
    line-height: .92;
    letter-spacing: -6px;
}

.scripture-header p {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.scripture-showcase {
    position: relative;
    margin-top: 80px;
    padding: 54px;
    border-radius: 46px;

    background:
        radial-gradient(circle at 78% 0%, rgba(133, 119, 241, .24), transparent 42%),
        radial-gradient(circle at 12% 90%, rgba(59, 130, 246, .12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .42);
    overflow: hidden;
}

.scripture-showcase::before {
    content: "";
    position: absolute;
    inset: -120px;
    background:
        radial-gradient(circle at 50% 40%, rgba(133, 119, 241, .12), transparent 45%);
    filter: blur(50px);
    pointer-events: none;
}

.scripture-showcase>* {
    position: relative;
    z-index: 2;
}

.verse-preview-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px;
    border-radius: 38px;
    overflow: hidden;

    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72)),
        radial-gradient(circle at 70% 0%, rgba(133, 119, 241, .30), transparent 46%),
        linear-gradient(135deg, rgba(30, 30, 40, .95), rgba(10, 10, 14, .96));

    border: 1px solid rgba(255, 255, 255, .12);
}

.verse-bg-glow {
    position: absolute;
    inset: auto 10% -35% 10%;
    height: 260px;
    background: radial-gradient(circle, rgba(133, 119, 241, .30), transparent 66%);
    filter: blur(60px);
    pointer-events: none;
}

.verse-mini-label {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 850;
}

.verse-preview-card h3 {
    max-width: 850px;
    margin: 32px auto 0;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1.08;
    letter-spacing: -3px;
}

.verse-preview-card strong {
    display: block;
    margin-top: 28px;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
}

.verse-action-row {
    margin: 46px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.verse-action-row div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .78);
    font-weight: 750;
}

.verse-action-row i {
    width: 18px;
    height: 18px;
    color: #b8a9ff;
}

.ai-study-card {
    max-width: 940px;
    margin: 34px auto 0;
    padding: 32px;
    border-radius: 34px;

    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);

    text-align: left;
}

.ai-study-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.ai-study-top span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8a9ff;
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ai-study-top i {
    width: 18px;
    height: 18px;
}

.ai-study-top button {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    border-radius: 999px;

    border: 1px solid rgba(133, 119, 241, .35);

    background:

        linear-gradient(180deg,
            rgba(133, 119, 241, .14),
            rgba(133, 119, 241, .08));

    color: #d8d0ff;

    font-weight: 700;

    pointer-events: none;

    user-select: none;

}

.ai-study-block {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
}

.ai-study-block strong,
.ai-study-grid strong {
    display: block;
    color: white;
    font-size: 18px;
}

.ai-study-block p,
.ai-study-grid p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .58);
    line-height: 1.45;
}

.ai-study-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ai-study-grid div {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.ai-study-grid i {
    width: 22px;
    height: 22px;
    color: #b8a9ff;
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .scripture-showcase {
        padding: 28px;
    }

    .ai-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feature-scripture-section {
        padding: 110px 18px;
    }

    .scripture-header h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .verse-preview-card {
        padding: 48px 24px;
    }

    .ai-study-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ai-study-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   FEATURE CONNECT SECTION
========================================= */

.feature-connect-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 180px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.connect-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(56px, 6vw, 104px);
    line-height: .9;
    letter-spacing: -5px;
}

.connect-copy p {
    max-width: 640px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.connect-visual {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
}

.connect-visual::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .18), transparent 65%);
    filter: blur(65px);
    pointer-events: none;
}

.connect-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    padding: 30px;
    border-radius: 40px;

    background:
        radial-gradient(circle at 80% 0%, rgba(59, 130, 246, .22), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 45px 110px rgba(0, 0, 0, .48);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header strong {
    display: block;
    font-size: 26px;
    letter-spacing: -1px;
}

.chat-header small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .54);
    font-weight: 700;
}

.chat-header i {
    width: 25px;
    height: 25px;
    color: #93c5fd;
}

.chat-message {
    width: fit-content;
    max-width: 78%;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
}

.chat-message p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.4;
    font-size: 15px;
}

.chat-message span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    font-weight: 700;
}

.chat-message.received {
    background: rgba(255, 255, 255, .065);
    border-bottom-left-radius: 8px;
}

.chat-message.sent {
    margin-left: auto;
    background:
        radial-gradient(circle at 90% 20%, rgba(133, 119, 241, .25), transparent 45%),
        rgba(133, 119, 241, .22);
    border-bottom-right-radius: 8px;
}

.voice-note {
    margin-top: 26px;
    padding: 16px 18px;
    border-radius: 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .10);
}

.voice-note i {
    width: 20px;
    height: 20px;
    color: #93c5fd;
}

.voice-bars {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.voice-bars span {
    width: 5px;
    border-radius: 999px;
    background: rgba(147, 197, 253, .75);
}

.voice-bars span:nth-child(1) {
    height: 12px;
}

.voice-bars span:nth-child(2) {
    height: 24px;
}

.voice-bars span:nth-child(3) {
    height: 16px;
}

.voice-bars span:nth-child(4) {
    height: 30px;
}

.voice-bars span:nth-child(5) {
    height: 18px;
}

.voice-note small {
    color: rgba(255, 255, 255, .55);
    font-weight: 750;
}

.connect-floating-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 22px;

    background: rgba(24, 24, 28, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.connect-floating-card i {
    width: 22px;
    height: 22px;
    color: #93c5fd;
}

.connect-floating-card strong {
    display: block;
    font-size: 15px;
}

.connect-floating-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
}

.connect-friend {
    top: 95px;
    right: 10px;
    animation: softFloat 9s ease-in-out infinite;
}

.connect-notification {
    bottom: 90px;
    right: 30px;
    animation: softFloat 10s ease-in-out infinite;
}

.connect-voice {
    bottom: 250px;
    left: -50px;
    animation: softFloat 11s ease-in-out infinite;
}

@media (max-width: 1000px) {
    .feature-connect-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .connect-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .connect-copy .feature-deep-list {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-connect-section {
        padding: 100px 18px;
    }

    .connect-copy h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .connect-visual {
        min-height: auto;
    }

    .connect-card {
        padding: 24px;
        border-radius: 32px;
    }

    .connect-floating-card {
        display: none;
    }
}

/* =========================================
   FEATURE EVENTS SECTION
========================================= */

.feature-events-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 180px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.events-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(56px, 6vw, 104px);
    line-height: .9;
    letter-spacing: -5px;
}

.events-copy p {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.events-visual {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
}

.events-visual::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .16), transparent 65%);
    filter: blur(65px);
    pointer-events: none;
}

.events-calendar-card {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 34px;
    border-radius: 40px;

    background:
        radial-gradient(circle at 80% 0%, rgba(34, 197, 94, .20), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 45px 110px rgba(0, 0, 0, .48);
}

.events-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.events-calendar-header span {
    color: #86efac;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.events-calendar-header strong {
    display: block;
    margin-top: 8px;
    color: white;
    font-size: 30px;
    letter-spacing: -1.5px;
}

.events-calendar-header i {
    width: 28px;
    height: 28px;
    color: #86efac;
}

.events-calendar-month {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.events-calendar-month span {
    text-align: center;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    font-weight: 800;
}

.events-calendar-month button {
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .74);
    font-weight: 800;
}

.events-calendar-month button.active {
    background: rgba(34, 197, 94, .26);
    border-color: rgba(34, 197, 94, .44);
    color: white;
    box-shadow: 0 0 34px rgba(34, 197, 94, .18);
}

.events-list-preview {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.events-list-preview>div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;

    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .10);
}

.events-list-preview i {
    width: 22px;
    height: 22px;
    color: #86efac;
}

.events-list-preview strong {
    display: block;
    font-size: 16px;
}

.events-list-preview small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .52);
}

.events-floating-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 20px;
    border-radius: 22px;

    background: rgba(24, 24, 28, .82);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.events-floating-card i {
    width: 22px;
    height: 22px;
    color: #86efac;
}

.events-floating-card strong {
    display: block;
    font-size: 15px;
}

.events-floating-card small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .52);
}

.event-repeat-card {
    top: 95px;
    right: -20px;
    animation: softFloat 9s ease-in-out infinite;
}

.event-reminder-card {
    bottom: 0px;
    right: 200px;
    animation: softFloat 10s ease-in-out infinite;
}

@media (max-width: 1000px) {
    .feature-events-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .events-copy {
        order: -1;
    }

    .events-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .events-copy .feature-deep-list {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-events-section {
        padding: 100px 18px;
    }

    .events-copy h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .events-visual {
        min-height: auto;
    }

    .events-calendar-card {
        padding: 24px;
        border-radius: 32px;
    }

    .events-floating-card {
        display: none;
    }

    .events-calendar-month {
        gap: 7px;
    }

    .events-calendar-month button {
        height: 42px;
        border-radius: 13px;
    }
}

/* =========================================
   FEATURES PAGE - PRO PREVIEW
========================================= */

.features-pro-preview {
    padding: 0 24px 150px;
    background: #000;
}

.features-pro-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 70px;
    border-radius: 44px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(111, 59, 210, .24), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .11);
}

.features-pro-inner h2 {
    margin: 24px auto 0;
    max-width: 900px;
    font-size: clamp(52px, 6vw, 96px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 850;
}

.features-pro-inner>p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, .64);
    font-size: 20px;
    line-height: 1.5;
}

.features-pro-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.features-pro-list div {
    padding: 30px;
    border-radius: 26px;
    text-align: left;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
}

.features-pro-list h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 850;
}

.features-pro-list p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.5;
}

.features-pro-btn {
    display: inline-flex;
    margin-top: 54px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #5e2b88ae;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 650;
}

@media (max-width: 900px) {
    .features-pro-inner {
        padding: 64px 36px;
    }

    .features-pro-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .features-pro-preview {
        padding: 0 18px 100px;
    }

    .features-pro-inner {
        padding: 52px 24px;
        border-radius: 34px;
    }

    .features-pro-inner h2 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -3px;
    }

    .features-pro-inner>p {
        font-size: 17px;
    }
}


/*=========================================
FINAL CTA
=========================================*/

.features-final-cta {

    position: relative;
    overflow: hidden;

    padding: 100px 24px 200px;

}

.features-final-cta::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 900px;
    height: 900px;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(circle,
            rgba(133, 119, 241, .16),
            transparent 68%);

    filter: blur(70px);

    pointer-events: none;

}

.features-final-inner {

    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;

    text-align: center;

}

.features-final-inner h2 {

    margin: 24px auto 0;

    max-width: 1500px;

    font-size: clamp(64px, 7vw, 110px);

    line-height: .92;

    letter-spacing: -5px;

}

.features-final-inner p {

    max-width: 720px;

    margin: 34px auto 0;

    color: rgba(255, 255, 255, .60);

    font-size: 22px;

    line-height: 1.6;

}

.features-final-buttons a {
    text-decoration: none;
}

.features-final-buttons {

    margin-top: 54px;

    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;

}

.download-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 28px;

    border-radius: 999px;

    background: #5e2b88ae;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    border: 1px solid rgba(255, 255, 255, .12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    box-shadow:
        0 12px 35px rgba(255, 255, 255, .08);

}

.download-btn:hover {

    transform: translateY(-3px);

    background: #5e2b88;

    box-shadow:
        0 18px 45px rgba(255, 255, 255, 0.087);

}

.secondary-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 28px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .045);

    border: 1px solid rgba(255, 255, 255, .09);

    color: rgba(255, 255, 255, .90);

    font-size: 16px;
    font-weight: 700;

    backdrop-filter: blur(24px);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;

}

.secondary-btn:hover {

    transform: translateY(-3px);

    background: rgba(255, 255, 255, .075);

    border-color: rgba(255, 255, 255, .18);

}

/* =========================================
   PRO PAGE
========================================= */

.pro-page-hero {
    min-height: 82vh;
    padding: 190px 24px 100px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .24), transparent 36%),
        #000;
}

.pro-page-hero h1 {
    max-width: 1050px;
    margin: 0 auto;
    font-size: clamp(58px, 7vw, 118px);
    line-height: .9;
    letter-spacing: -6px;
    font-weight: 850;
}

.pro-page-hero p {
    max-width: 760px;
    margin: 32px auto 0;
    color: rgba(255, 255, 255, .64);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
}

.pro-page-main-btn {
    display: inline-flex;
    margin-top: 42px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #6f3bd2;
    color: white;
    text-decoration: none;
    font-weight: 850;
}

.pro-page-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pro-page-card {
    min-height: 360px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 10%, rgba(111, 59, 210, .22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .11);
}



.pro-page-card h2 {
    margin: 90px 0 0;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: .95;
    letter-spacing: -2px;
}

.pro-page-card p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.5;
}

.pro-compare-section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 24px 180px;
}

.pro-compare-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.pro-compare-header h2 {
    margin: 24px auto 0;
    font-size: clamp(56px, 6vw, 98px);
    line-height: .92;
    letter-spacing: -5px;
}

.pro-compare-header p {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 21px;
    line-height: 1.6;
}

.pro-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 26px;
}

.compare-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 38px;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .16), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .38);
}

.pro-card-compare {
    background:
        radial-gradient(circle at 82% 0%, rgba(133, 119, 241, .34), transparent 44%),
        linear-gradient(145deg, rgba(133, 119, 241, .12), rgba(255, 255, 255, .035));
    border-color: rgba(133, 119, 241, .32);
}

.compare-label {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.compare-card h3 {
    margin: 30px 0 0;
    font-size: clamp(34px, 3vw, 54px);
    line-height: .95;
    letter-spacing: -2px;
}

.compare-card>p {
    max-width: 520px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .60);
    font-size: 18px;
    line-height: 1.5;
}

.compare-card ul {
    margin: 38px 0 0;
    padding: 0;
    display: grid;
    gap: 15px;
}

.compare-card li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    font-weight: 750;
}

.compare-card li i {
    width: 19px;
    height: 19px;
    color: #b8a9ff;
}

.pro-glow-badge {
    position: absolute;
    top: 34px;
    right: 34px;

    padding: 10px 15px;
    border-radius: 999px;

    background: linear-gradient(135deg, #8b5cf6, #6d3bd2);
    color: white;

    font-size: 13px;
    font-weight: 850;

    box-shadow: 0 18px 45px rgba(133, 119, 241, .35);
}

@media (max-width: 850px) {
    .pro-compare-grid {
        grid-template-columns: 1fr;
    }

    .pro-glow-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-flex;
        margin-bottom: 18px;
    }
}

@media (max-width: 560px) {
    .pro-compare-section {
        padding: 110px 18px;
    }

    .compare-card {
        padding: 30px;
        border-radius: 30px;
    }

    .pro-compare-header h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }
}

/* =========================================
   PRO DASHBOARD TEASER
========================================= */

.pro-dashboard-teaser {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px 220px;
    text-align: center;
}

.dashboard-teaser-copy h2 {
    max-width: 950px;
    margin: 24px auto 0;
    font-size: clamp(58px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -5px;
}

.dashboard-teaser-copy p {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 21px;
    line-height: 1.6;
}

.dashboard-preview-card {
    margin: 80px auto 0;
    overflow: hidden;
    border-radius: 42px;
    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .26), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .45);
}

.dashboard-browser-top {
    height: 72px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .035);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.dashboard-browser-top strong {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 850;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
}

.dashboard-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 18px rgba(139, 92, 246, .85);
    animation: dashboardPulse 1.8s ease-in-out infinite;
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 520px;
}

.dashboard-sidebar {
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.sidebar-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 18px 45px rgba(139, 92, 246, .30);
}

.dashboard-sidebar span {
    padding: 13px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, .52);
    font-weight: 750;
}

.dashboard-sidebar span.active {
    color: white;
    background: rgba(133, 119, 241, .22);
    border: 1px solid rgba(133, 119, 241, .25);
}

.dashboard-main-preview {
    padding: 34px;
    text-align: left;
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dashboard-stats-row div,
.dashboard-wide-card,
.dashboard-mini-list {
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
}

.dashboard-stats-row div {
    padding: 22px;
}

.dashboard-stats-row small {
    display: block;
    color: rgba(255, 255, 255, .48);
    font-weight: 800;
}

.dashboard-stats-row strong {
    display: block;
    margin-top: 10px;
    color: white;
    font-size: 42px;
    letter-spacing: -2px;
}

.dashboard-wide-card {
    margin-top: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: end;
}

.dashboard-wide-card span {
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dashboard-wide-card strong {
    display: block;
    margin-top: 12px;
    color: white;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.2px;
}

.dashboard-chart-lines {
    height: 150px;
    display: flex;
    align-items: end;
    gap: 12px;
}

.dashboard-chart-lines span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #8b5cf6, rgba(139, 92, 246, .18));
}

.dashboard-chart-lines span:nth-child(1) {
    height: 45%;
}

.dashboard-chart-lines span:nth-child(2) {
    height: 72%;
}

.dashboard-chart-lines span:nth-child(3) {
    height: 58%;
}

.dashboard-chart-lines span:nth-child(4) {
    height: 88%;
}

.dashboard-bottom-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dashboard-mini-list {
    padding: 24px;
}

.dashboard-mini-list strong {
    display: block;
    color: white;
    font-size: 18px;
    margin-bottom: 18px;
}

.dashboard-mini-list span {
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .58);
    font-weight: 700;
}

.dashboard-teaser-features {
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dashboard-teaser-features div {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
}

.dashboard-teaser-features i {
    width: 24px;
    height: 24px;
    color: #b8a9ff;
}

.dashboard-teaser-features strong {
    display: block;
    margin-top: 16px;
    color: white;
    font-size: 17px;
}

.dashboard-teaser-features span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.45;
}

@keyframes dashboardPulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@media (max-width: 900px) {
    .dashboard-preview-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-wide-card,
    .dashboard-bottom-grid,
    .dashboard-teaser-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pro-dashboard-teaser {
        padding: 110px 18px;
    }

    .dashboard-teaser-copy h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .dashboard-browser-top {
        height: auto;
        padding: 18px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .dashboard-main-preview {
        padding: 22px;
    }

    .dashboard-stats-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PRO FAQ PREMIUM
========================================= */

.pro-faq-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px 140px;
}

.pro-faq-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pro-faq-heading h2 {
    margin: 24px auto 0;
    font-size: clamp(54px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -5px;
}

.pro-faq-heading p {
    max-width: 680px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.55;
}

.pro-faq-list {
    display: grid;
    gap: 16px;
}

.pro-faq-list details {
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 0%, rgba(133, 119, 241, .12), transparent 38%),
        rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}

.pro-faq-list details[open] {
    border-color: rgba(133, 119, 241, .28);
    background:
        radial-gradient(circle at 90% 0%, rgba(133, 119, 241, .20), transparent 40%),
        rgba(255, 255, 255, .06);
}

.pro-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pro-faq-list summary::-webkit-details-marker {
    display: none;
}

.pro-faq-list summary span {
    color: white;
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -.5px;
}

.pro-faq-list summary i {
    width: 22px;
    height: 22px;
    color: #b8a9ff;
    transition: transform .3s ease;
}

.pro-faq-list details[open] summary i {
    transform: rotate(180deg);
}

.pro-faq-list details p {
    margin: 0;
    padding: 0 30px 30px;
    max-width: 820px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 560px) {
    .pro-faq-premium {
        padding: 110px 18px;
    }

    .pro-faq-heading h2 {
        font-size: clamp(46px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .pro-faq-list summary {
        padding: 24px;
    }

    .pro-faq-list summary span {
        font-size: 18px;
    }

    .pro-faq-list details p {
        padding: 0 24px 26px;
    }
}

@media (max-width: 1100px) {
    .pro-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {

    .pro-page-grid,
    .pro-compare-grid {
        grid-template-columns: 1fr;
    }

    .pro-page-card h2 {
        margin-top: 60px;
    }

    .pro-future-section {
        margin-left: 18px;
        margin-right: 18px;
        padding: 64px 24px;
        border-radius: 34px;
    }
}

@media (max-width: 560px) {
    .pro-page-hero {
        padding: 150px 18px 80px;
    }

    .pro-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -4px;
    }

    .pro-page-grid {
        padding: 20px 18px 100px;
    }

    .pro-page-card {
        min-height: auto;
        padding: 32px;
    }

    .pro-compare-section {
        padding: 0px 18px 190px;
    }

    .compare-card {
        padding: 32px;
    }

    .pro-faq-section {
        margin-bottom: 100px;
        padding: 0 18px;
    }
}

/* =========================================
   COMMUNITY PAGE
========================================= */

.community-page-hero {
    min-height: 58vh;
    padding: 190px 24px 90px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .22), transparent 36%),
        #000;
}

.community-page-hero h1 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(58px, 7vw, 116px);
    line-height: .9;
    letter-spacing: -6px;
    font-weight: 850;
}

.community-page-hero p {
    max-width: 760px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
}

.community-stats {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}



.lightwidget-widget {

    width: 100%;

    border: none;

    overflow: hidden;

    border-radius: 30px;

    min-height: 500px;

    background: transparent;
}

.community-stats div {
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .1);
}

.community-stats h2 {
    margin: 0;
    font-size: clamp(40px, 4vw, 68px);
    letter-spacing: -3px;
}

.community-stats p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
    line-height: 1.5;
}

.community-stories {
    padding: 0 24px 150px;
}

.community-story-heading {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.community-story-heading h2 {
    margin: 24px 0 0;
    font-size: clamp(52px, 6vw, 96px);
    line-height: .95;
    letter-spacing: -4px;
}

.community-story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.community-story-grid article {
    position: relative;
    min-height: 460px;
    padding: 42px;
    border-radius: 34px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        radial-gradient(circle at 85% 10%, rgba(111, 59, 210, .22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .1);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.community-story-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(133, 119, 241, .28);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.community-story-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    background-size: cover;
    background-position: center;
    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease;
}

.community-story-grid article:hover::before {
    transform: scale(1.04);
    opacity: .76;
}

.community-story-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .05) 0%,
            rgba(0, 0, 0, .20) 35%,
            rgba(0, 0, 0, .58) 100%),
        radial-gradient(circle at 75% 12%,
            rgba(133, 119, 241, .16),
            transparent 2%);
}

.story-churches::before {
    background-image: url("../assets/images/community/churches.webp");
}

.story-groups::before {
    background-image: url("../assets/images/community/groups.webp");
}

.story-teams::before {
    background-image: url("../assets/images/community/teams.webp");
}

.community-story-grid article>* {
    position: relative;
    z-index: 2;
}

.community-story-grid article span {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 700;
}

.community-story-grid h3 {
    margin: 130px 0 0;
    font-size: clamp(32px, 3vw, 50px);
    line-height: .95;
    letter-spacing: -2px;
}

.community-story-grid p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.5;
}

.community-partner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto 160px;
    padding: 95px 50px;
    border-radius: 46px;
    text-align: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 70% 0%, rgba(133, 119, 241, .28), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .11);
}

.community-partner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 52%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(133, 119, 241, .16), transparent 62%);
    filter: blur(55px);
    pointer-events: none;
}

.community-partner>* {
    position: relative;
    z-index: 2;
}

.community-partner h2 {
    max-width: 960px;
    margin: 28px auto 0;
    font-size: clamp(52px, 6vw, 96px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 850;
}

.community-partner p {
    max-width: 760px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .64);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
}

.partner-divider {
    width: min(100%, 620px);
    height: 1px;
    margin: 46px auto 34px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .14),
            transparent);
}

.partner-supporters {
    display: grid;
    place-items: center;
    gap: 16px;
}

.partner-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-avatars img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;

    margin-left: -13px;

    border: 2px solid rgba(255, 255, 255, .22);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        0 0 22px rgba(133, 119, 241, .18);
}

.partner-avatars img:first-child {
    margin-left: 0;
}

.partner-supporters span {
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    font-weight: 750;
}

.partner-btn {
    margin-top: 34px;
}

.community-partner small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}

/* Mobile */
@media (max-width: 560px) {
    .community-partner {
        margin: 0 18px 110px;
        padding: 68px 24px;
        border-radius: 34px;
    }

    .community-partner h2 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -3px;
    }

    .community-partner p {
        font-size: 16.5px;
    }

    .partner-avatars img {
        width: 46px;
        height: 46px;
        margin-left: -10px;
    }
}

@media (max-width:900px) {

    .instagram-section {

        margin: 120px auto;

        padding: 0 24px;
    }

    .lightwidget-widget {

        min-height: 1400px;
    }

}

@media (max-width: 1000px) {

    .community-stats,
    .community-story-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

@media (max-width: 560px) {
    .community-page-hero {
        padding: 150px 18px 80px;
    }

    .community-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -4px;
    }

    .community-stats {
        padding: 20px 18px 100px;
    }

    .community-stats div,
    .community-story-grid article {
        padding: 32px;
        min-height: auto;
    }

    .community-stories {
        padding: 0 18px 100px;
    }

    .community-story-grid h3 {
        margin-top: 60px;
    }

    .community-partner {
        margin: 0 18px 100px;
        padding: 64px 24px;
        border-radius: 34px;
    }
}

/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-hero-premium {
    position: relative;
    min-height: 100vh;
    padding: 90px 24px 110px;
    display: grid;
    place-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .25), transparent 36%),
        #000;
}

.about-hero-premium::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 54%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(133, 119, 241, .13), transparent 65%);
    filter: blur(70px);
    pointer-events: none;
}

.about-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
}

.about-hero-copy h1 {
    margin: 24px auto 0;
    font-size: clamp(64px, 7vw, 100px);
    line-height: .9;
    letter-spacing: -3px;
    font-weight: 800;
}

.about-hero-copy p {
    max-width: 760px;
    margin: 32px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.55;
}

.about-hero-visual {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    width: min(100%, 980px);
    min-height: 260px;
}

.about-glass-card {
    position: absolute;
    padding: 24px 26px;
    border-radius: 28px;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .18), transparent 42%),
        rgba(255, 255, 255, .055);

    border: 1px solid rgba(255, 255, 255, .11);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.about-glass-card span {
    display: block;
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.about-glass-card strong {
    display: block;
    margin-top: 10px;
    color: white;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.8px;
}

.mission-card {
    left: 0;
    top: 20px;
    width: 300px;
}

.vision-card {
    right: 0;
    top: 78px;
    width: 320px;
}

.founder-mini-card {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 330px;
}

.founder-mini-card img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .16);
}

.about-background-lines {
    position: absolute;
    inset: 0;
    opacity: .22;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);

    background-size: 90px 90px;

    mask-image: radial-gradient(circle at 50% 45%, black, transparent 68%);
}

.about-hero-premium::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -42%);
    border: 1px solid rgba(133, 119, 241, .16);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-copy,
.about-hero-visual {
    opacity: 0;
    animation: aboutFadeUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.about-hero-copy {
    animation-delay: .12s;
}

.about-hero-visual {
    animation-delay: .34s;
}

.mission-card {
    animation: aboutFloat 8s ease-in-out infinite;
}

.founder-mini-card {
    animation: aboutFloat 9s ease-in-out infinite;
}

.vision-card {
    animation: aboutFloat 10s ease-in-out infinite;
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes aboutFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

@media (max-width: 800px) {
    .about-hero-premium {
        padding-top: 150px;
    }

    .about-hero-copy h1 {
        font-size: clamp(52px, 14vw, 78px);
        letter-spacing: -4px;
    }

    .about-hero-visual {
        display: grid;
        gap: 16px;
        min-height: auto;
        margin-top: 54px;
    }

    .about-glass-card {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
    }

    .founder-mini-card {
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
    }
}

/* =========================================
   ABOUT MISSION SECTION
========================================= */

.about-mission-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 24px 240px;

    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.mission-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(54px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -5px;
}

.mission-copy p {
    max-width: 660px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 21px;
    line-height: 1.6;
}

.mission-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.mission-visual::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 119, 241, .18), transparent 65%);
    filter: blur(60px);
}

.mission-line {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(133, 119, 241, .22);
    border-radius: 50%;
}

.mission-line::before {
    content: "";
    position: absolute;
    inset: 55px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.mission-item {
    position: absolute;
    width: 250px;
    padding: 22px 24px;
    border-radius: 26px;

    display: flex;
    align-items: center;
    gap: 14px;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .18), transparent 42%),
        rgba(255, 255, 255, .055);

    border: 1px solid rgba(255, 255, 255, .11);
    backdrop-filter: blur(22px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}

.mission-item i {
    width: 24px;
    height: 24px;
    color: #b8a9ff;
}

.mission-item span {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    font-weight: 800;
}

.mission-item:nth-child(2) {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-item:nth-child(3) {
    right: 10px;
    top: 190px;
}

.mission-item:nth-child(4) {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-item:nth-child(5) {
    left: 10px;
    top: 190px;
}

@media (max-width: 1000px) {
    .about-mission-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .mission-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 560px) {
    .about-mission-card {
        padding: 100px 18px;
    }

    .mission-copy h2 {
        font-size: clamp(46px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .mission-visual {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .mission-line {
        display: none;
    }

    .mission-item {
        position: relative;
        inset: auto !important;
        transform: none !important;
        width: 100%;
    }
}



.about-vision-section {
    position: relative;
    max-width: 1360px;
    margin: 0 auto 140px;
    padding: 110px 50px;
    border-radius: 46px;
    text-align: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 100%, rgba(133, 119, 241, .08), transparent 35%),
        radial-gradient(circle at 85% 0%, rgba(133, 119, 241, .18), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));

    border: 1px solid rgba(255, 255, 255, .10);
}

.about-vision-section::before {
    content: "";
    width: 110px;
    height: 2px;
    display: block;
    margin: 0 auto 34px;
    background: linear-gradient(90deg,
            transparent,
            rgba(133, 119, 241, .85),
            transparent);
}

.about-vision-section h2 {
    max-width: 920px;
    margin: 24px auto 0;
    font-size: clamp(52px, 6vw, 94px);
    line-height: .92;
    letter-spacing: -5px;
}

.about-vision-section>p {
    max-width: 620px;
    margin: 34px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
    line-height: 1.6;
}

.vision-pillars {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vision-pillars div {
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
}

.vision-pillars strong {
    display: block;
    color: white;
    font-size: 19px;
    font-weight: 850;
}

.vision-pillars span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.about-vision-section .vision-footer {
    margin-top: 46px;
    color: rgba(255, 255, 255, .45);
    font-size: 15px;
    letter-spacing: .02em;
}

@media (max-width: 800px) {
    .about-vision-section {
        margin: 0 18px 110px;
        padding: 80px 24px;
        border-radius: 34px;
    }

    .about-vision-section h2 {
        font-size: clamp(46px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .vision-pillars div {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-values {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

@media (max-width: 560px) {
    .about-hero {
        padding: 150px 18px 80px;
    }

    .about-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -4px;
    }

    .about-story {
        padding: 30px 18px 100px;
    }

    .about-values {
        padding: 0 18px 100px;
    }

    .about-values article {
        min-height: auto;
        padding: 32px;
    }

    .about-values h3 {
        margin-top: 60px;
    }

    .about-founder {
        margin: 0 18px 100px;
        padding: 64px 24px;
        border-radius: 34px;
    }
}

/* =========================================
   ABOUT PAGE - FOUNDER PROFILE
========================================= */

.about-founder-profile {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 150px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.founder-card {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .28), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 40px 90px rgba(0, 0, 0, .38);
}

.founder-image {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.founder-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .68)),
        radial-gradient(circle at 50% 0%, rgba(111, 59, 210, .18), transparent 42%);
    pointer-events: none;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.founder-quote {
    margin: 34px 0;
    padding-left: 24px;

    border-left: 2px solid rgba(133, 119, 241, .45);

    color: rgba(255, 255, 255, .78);

    font-size: 18px;
    line-height: 1.9;

    font-style: italic;
    font-weight: 400;

    max-width: 720px;
}

.founder-profile {
    padding: 34px;
    text-align: center;
}

.founder-profile h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 850;
    letter-spacing: -1px;
}

.founder-role {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    font-weight: 600;
}



.founder-copy {
    padding: 20px 0;
}

.founder-copy h2 {
    margin: 24px 0 0;
    font-size: clamp(48px, 5.5vw, 90px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 850;
}

.founder-copy p {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .about-founder-profile {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 760px;
    }

    .founder-image {
        height: 520px;
    }

    .founder-info {
        flex-direction: column;
        gap: 22px;
    }
}

@media (max-width: 560px) {
    .about-founder-profile {
        padding: 0 18px 100px;
    }

    .founder-card {
        border-radius: 34px;
    }

    .founder-image {
        height: 430px;
    }

    .founder-profile {
        padding: 28px 22px;
    }

    .founder-profile h3 {
        font-size: 30px;
    }

    .founder-copy h2 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -3px;
    }

    .founder-copy p {
        font-size: 17px;
    }
}

/* =========================================
   DAILY VERSE SECTION
========================================= */

.daily-verse-section {
    padding: 140px 24px 170px;
    background: #000;
    text-align: center;
}

.daily-verse-heading {
    max-width: 760px;
    margin: 0 auto 80px;
}

.daily-verse-heading h2 {
    margin: 0;
    font-size: clamp(48px, 5vw, 82px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 850;
}

.daily-verse-heading p {
    margin: 24px auto 0;
    max-width: 720px;
    color: rgba(255, 255, 255, .58);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.5;
}

.verse-card {
    position: relative;
    width: min(100%, 900px);
    min-height: 420px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 36px 90px rgba(0, 0, 0, .42);
}

.verse-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .68)),
        radial-gradient(circle at 50% 40%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .48));
}

.verse-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 48px;
    text-align: center;
}

.verse-label {
    display: block;
    margin-bottom: 26px;

    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    font-weight: 850;
}

.verse-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 800;
}

.verse-card-content p {
    margin: 0;
    max-width: 780px;

    color: white;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.18;
    letter-spacing: -1.8px;
    font-weight: 850;
}

.verse-card-content strong {
    display: block;
    margin-top: 26px;

    color: rgba(255, 255, 255, .70);
    font-size: 18px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 560px) {
    .daily-verse-section {
        padding: 90px 18px 110px;
    }

    .daily-verse-heading {
        margin-bottom: 54px;
    }

    .daily-verse-heading h2 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -3px;
    }

    .verse-card {
        min-height: 390px;
        border-radius: 28px;
    }

    .verse-card-content {
        padding: 28px;
    }

    .verse-label {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .verse-card-content p {
        font-size: clamp(25px, 7vw, 34px);
    }

    .verse-card-content strong {
        font-size: 16px;
    }
}

.community-hero-v2 {
    position: relative;
    min-height: 100vh;
    padding: 10px 56px 100px;
    overflow: hidden;

    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 30px;

    background:
        radial-gradient(circle at 60% 18%, rgba(111, 59, 210, .24), transparent 34%),
        #000;
}

.community-hero-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #000 0%, transparent 22%, transparent 78%, #000 100%),
        linear-gradient(to bottom, transparent 70%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.community-hero-copy {
    position: relative;
    z-index: 5;
    max-width: 620px;
}

.community-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;

    color: #b8a9ff;
    background: rgba(133, 119, 241, .10);
    border: 1px solid rgba(133, 119, 241, .30);

    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.community-hero-copy h1 {
    margin: 110px 0 0;
    font-size: clamp(70px, 7vw, 116px);
    line-height: .9;
    letter-spacing: -6px;
    font-weight: 850;
}

.community-hero-copy p {
    max-width: 560px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .64);
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.55;
}

.community-hero-btn {
    margin: 55px 0px 30px;
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 18px 20px 18px 28px;

    border-radius: 999px;

    background:
        linear-gradient(180deg, #252525, #181818);

    border: 1px solid rgba(255, 255, 255, .10);

    color: #fff;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    position: relative;

    overflow: hidden;

    transition: .35s;
}

.community-hero-btn:hover {

    transform: translateY(-3px);

    border-color: rgba(125, 92, 245, .45);

    box-shadow:
        0 15px 45px rgba(125, 92, 245, .25);

}

.community-hero-btn:hover span {

    transform: translateX(4px);

    background: #8D6BFF;

}

.community-hero-btn::before {

    content: "";

    position: absolute;

    inset: -30%;

    background:

        radial-gradient(circle at left,
            rgba(125, 92, 245, .28),
            transparent 45%);

    opacity: .9;

    pointer-events: none;

}

.community-hero-btn span {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #7D5CF5;

    transition: .35s;
}

.community-hero-art {
    position: relative;
    z-index: 3;
    height: 680px;
}

.community-hero-art::before {
    content: "";
    position: absolute;
    inset: 5% 0 0 0;
    background: radial-gradient(circle, rgba(133, 119, 241, .30), transparent 60%);
    filter: blur(80px);
    opacity: .8;
    pointer-events: none;
}

.community-map {
    position: absolute;
    left: -80px;
    right: 120px;
    top: 40px;
    bottom: 40px;

    background: url("../assets/images/community/world-map-dots.webp") center / contain no-repeat;

    opacity: .62;

    transform: translateZ(0);
    backface-visibility: hidden;
}

/* glow optimizado, en vez de drop-shadow pesado */
.community-map-glow {
    position: absolute;
    left: -40px;
    right: 80px;
    top: 70px;
    bottom: 70px;

    background: radial-gradient(circle at 55% 48%,
            rgba(133, 119, 241, .22),
            transparent 68%);

    filter: blur(55px);
    opacity: .8;
    pointer-events: none;
}

/* líneas del mapa */
.community-map::before,
.community-map::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(133, 119, 241, .22);
    border-radius: 50%;
    pointer-events: none;
}

.community-map::before {
    width: 480px;
    height: 260px;
    left: 30%;
    top: 28%;
    transform: rotate(-10deg);
}

.community-map::after {
    width: 520px;
    height: 300px;
    left: 38%;
    top: 18%;
    transform: rotate(14deg);
}

.community-people {
    position: absolute;
    right: 0;
    top: 50%;
    width: 430px;
    height: 560px;
    transform: translateY(-50%);
}

.person {
    position: absolute;
    object-fit: cover;
    border-radius: 26px;

    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, .48),
        0 0 34px rgba(111, 59, 210, .22);

    will-change: transform;

    backface-visibility: hidden;

    transform: translateZ(0);
}

.p1 {
    width: 150px;
    height: 170px;
    right: 50px;
    top: 0;
}

.p2 {
    width: 142px;
    height: 154px;
    right: 190px;
    top: 95px;
}

.p3 {
    width: 130px;
    height: 145px;
    right: 1px;
    top: 148px;
}

.p4 {
    width: 145px;
    height: 165px;
    right: 140px;
    top: 240px;
}

.p5 {
    width: 162px;
    height: 178px;
    right: 16px;
    top: 360px;
}

.p6 {
    width: 112px;
    height: 122px;
    right: 255px;
    top: 362px;
}

.p7 {
    width: 108px;
    height: 118px;
    right: 312px;
    top: 255px;
}

.p8 {
    width: 122px;
    height: 132px;
    right: 310px;
    top: 15px;
}

.p9 {
    width: 119px;
    height: 129px;
    right: 382px;
    top: 135px;
}

/* ---------- Floating Animation ---------- */

.p1 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-2deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .55s both,
        floatOne 11s ease-in-out .55s infinite;
}

.p2 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(2deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .62s both,
        floatTwo 13s ease-in-out .62s infinite;
}

.p3 {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .70s both,
        floatThree 10s ease-in-out .70s infinite;
}

.p4 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(1deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .78s both,
        floatFour 12s ease-in-out .78s infinite;
}

.p5 {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .86s both,
        floatFive 14s ease-in-out .86s infinite;
}

.p6 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-1deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) .94s both,
        floatSix 9s ease-in-out .94s infinite;
}

.p7 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(2deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) 1.02s both,
        floatSeven 15s ease-in-out 1.02s infinite;
}

.p8 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(2deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) 1.12s both,
        floatSeven 17s ease-in-out 1.12s infinite;
}

.p9 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(2deg);
    animation:
        personReveal .75s cubic-bezier(.22, 1, .36, 1) 1.22s both,
        floatSeven 20s ease-in-out 1.32s infinite;
}

@keyframes personReveal {
    from {
        opacity: 0;
        scale: .96;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

@keyframes floatOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(-1deg);
    }

}

@keyframes floatTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(0, 6px, 0) rotate(3deg);
    }

}

@keyframes floatThree {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -5px, 0);
    }

}

@keyframes floatFour {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(1deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(0deg);
    }

}

@keyframes floatFive {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 7px, 0);
    }

}

@keyframes floatSix {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }

    50% {
        transform: translate3d(0, -6px, 0) rotate(-2deg);
    }

}

@keyframes floatSeven {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(1deg);
    }

}

@keyframes floatEight {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }

    50% {
        transform: translate3d(0, -6px, 0) rotate(-1deg);
    }

}

@keyframes floatNine {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(2deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(1deg);
    }

}

@media (prefers-reduced-motion: reduce) {

    .person {

        animation: none;

    }

}

/* 👇 AQUÍ PEGAS ESTO */



@media (prefers-reduced-motion: reduce) {
    .person {
        animation: none;
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .community-hero-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 150px 24px 90px;
    }

    .community-hero-copy {
        margin: 0 auto;
    }

    .community-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .community-hero-art {
        width: 100%;
        height: 560px;
        margin-top: 30px;
        transform: translateX(-50%) scale(.97);
        left: 57%;
    }

    .community-map {
        left: 0;
        right: 0;
    }

    .community-people {
        right: 50%;
        transform: translate(50%, -50%);
    }
}

/* Mobile */
@media (max-width: 560px) {
    .community-hero-v2 {
        min-height: auto;
        display: block;
        padding: 90px 18px 40px;
        overflow: hidden;
    }

    .community-hero-copy {
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }

    .community-hero-copy h1 {
        margin: 0;
        font-size: clamp(52px, 15vw, 76px);
        letter-spacing: -4px;
    }

    .community-hero-copy p {
        margin: 24px auto 0;
    }

    .community-hero-btn {
        margin: 42px auto 30px;
    }

    .community-hero-art {
        position: relative;
        width: 100%;
        height: 560px;
        margin: 35px auto 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .community-map {
        opacity: .45;
    }

    .community-people {
        position: absolute;
        width: 430px;
        height: 560px;
        top: 0;
        left: 50%;
        transform: translateX(-44%) scale(.82);
        transform-origin: top center;
    }
}




.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.newsletter-modal.active {
    display: flex;
}

.newsletter-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(18px);
}

.newsletter-box {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    padding: 44px;
    border-radius: 34px;
    text-align: center;

    background:
        radial-gradient(circle at top right, rgba(133, 119, 241, .22), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));

    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
}

.newsletter-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.newsletter-badge {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #b8a9ff;
    font-size: 13px;
    font-weight: 800;
}

.newsletter-box h2 {
    margin: 24px 0 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: .95;
    letter-spacing: -2.5px;
}

.newsletter-box p {
    margin: 22px auto 0;
    max-width: 400px;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
    line-height: 1.5;
}

.newsletter-box form {
    margin-top: 32px;
    display: grid;
    gap: 12px;
}

.newsletter-box input {
    width: 100%;
    padding: 17px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
    color: white;
    font-size: 16px;
    outline: none;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.newsletter-box form button {
    padding: 17px 20px;
    border-radius: 999px;
    border: 0;
    background: #6f3bd2;
    color: white;
    font-size: 16px;
    font-weight: 850;
    cursor: pointer;
}

.newsletter-box small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

/* ===========================
   Hero Entrance Animation
=========================== */

.community-badge,
.community-hero-copy h1,
.community-hero-copy p,
.community-hero-btn,
.community-map {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.community-badge {
    animation-delay: .15s;
}

.community-hero-copy h1 {
    animation-delay: .28s;
}

.community-hero-copy p {
    animation-delay: .45s;
}

.community-hero-btn {
    animation-delay: .62s;
}

.community-map {
    animation-delay: .40s;
}



@keyframes heroFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(24px) scale(.98);

    }

    to {

        opacity: 1;

        transform:
            translateY(0) scale(1);

    }

}

/* =========================================
   LOGIN COMING SOON
========================================= */

.login-coming-soon {
    position: relative;
    min-height: 100vh;
    padding: 150px 24px;
    display: grid;
    place-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 0%, rgba(133, 119, 241, .28), transparent 38%),
        radial-gradient(circle at 80% 70%, rgba(111, 59, 210, .14), transparent 34%),
        #000;
}

.login-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at 50% 45%, black, transparent 70%);
}

.login-coming-card {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 90px 60px;
    border-radius: 48px;
    text-align: center;

    background:
        radial-gradient(circle at 80% 0%, rgba(133, 119, 241, .22), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));

    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .48);
    backdrop-filter: blur(24px);

    opacity: 0;
    animation: loginFadeUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.login-coming-card h1 {
    margin: 24px auto 0;
    font-size: clamp(58px, 7vw, 104px);
    line-height: .9;
    letter-spacing: -5px;
}

.login-coming-card p {
    max-width: 720px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 21px;
    line-height: 1.6;
}

.login-status-pill {
    margin: 42px auto 0;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 17px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);

    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 850;
}

.login-status-pill span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 18px rgba(139, 92, 246, .9);
    animation: loginPulse 1.8s ease-in-out infinite;
}

.login-back-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;
    padding: 0 28px;
    border-radius: 999px;

    background: linear-gradient(135deg, #8b5cf6, #6d3bd2);
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 850;

    box-shadow:
        0 18px 50px rgba(133, 119, 241, .34),
        inset 0 1px 0 rgba(255, 255, 255, .18);

    transition: transform .35s ease, box-shadow .35s ease;
}

.login-back-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 70px rgba(133, 119, 241, .44),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loginPulse {

    0%,
    100% {
        opacity: .55;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@media (max-width: 560px) {
    .login-coming-soon {
        padding: 135px 18px 90px;
    }

    .login-coming-card {
        padding: 70px 26px;
        border-radius: 36px;
    }

    .login-coming-card h1 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -4px;
    }

    .login-coming-card p {
        font-size: 17px;
    }
}

/* =========================================
   HOME - MINISTRY PRO CTA
========================================= */

.pro-section-home {
    padding: 10px 24px 100px;
    background: #000;
}

.pro-card {
    text-align: center;
    position: relative;
    overflow: hidden;

    max-width: 1380px;
    margin: 0 auto;

    padding: 110px 90px;

    border-radius: 42px;

    background:
        radial-gradient(circle at 82% 0%, rgba(133, 119, 241, .18), transparent 34%),
        linear-gradient(180deg, #101010, #090909);

    border: 1px solid rgba(255, 255, 255, .08);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 40px 120px rgba(0, 0, 0, .45);
}

/* Purple glow */

.pro-card::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -140px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(133, 119, 241, .20);

    filter: blur(90px);

    pointer-events: none;
}

/* -------------------------------- */

.pro-label {

    display: inline-flex;
    margin: 0 auto;

    align-items: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    color: #b9abff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

/* -------------------------------- */

.pro-card h2 {

    max-width: 1000px;

    margin: 28px auto 0;

    font-size: clamp(60px, 6vw, 94px);

    line-height: .9;

    letter-spacing: -4px;

    text-align: center;
}

/* -------------------------------- */

.pro-card>p {

    max-width: 850px;

    margin: 26px auto 0;

    color: rgba(255, 255, 255, .63);

    font-size: 20px;

    line-height: 1.7;

    text-align: center;
}

.pro-card>p+p {

    margin-top: 18px;
}

/* -------------------------------- */

.pro-features-home {

    max-width: 1200px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

/* -------------------------------- */

.pro-item-home {

    position: relative;

    padding: 28px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

/* Little accent line */

.pro-item-home::before {

    content: "";

    position: absolute;

    left: 28px;
    top: 0;

    width: 46px;
    height: 3px;

    border-radius: 20px;

    background: #8577f1;
}

.pro-item-home:hover {

    transform: translateY(-8px);

    border-color: rgba(133, 119, 241, .28);

    background:
        radial-gradient(circle at 100% 0%, rgba(133, 119, 241, .08), transparent 45%),
        rgba(255, 255, 255, .045);
}

.pro-item-home h3 {

    margin: 18px 0 14px;

    font-size: 24px;

    line-height: 1.05;

    letter-spacing: -1px;
}

.pro-item-home span {

    color: rgba(255, 255, 255, .58);

    font-size: 16px;

    line-height: 1.65;
}

/* -------------------------------- */

.pro-btn-home {


    display: flex;

    align-items: center;
    justify-content: center;
    width: fit-content;

    margin-top: 64px;
    margin: 64px auto 0;
    /* <-- centra el botón */

    height: 60px;

    padding: 0 30px;

    border-radius: 999px;

    background: linear-gradient(135deg, #8b5cf6, #6d3bd2);

    color: white;

    text-decoration: none;

    font-weight: 800;

    font-size: 16px;

    transition:
        transform .35s,
        box-shadow .35s;

    box-shadow:
        0 20px 50px rgba(133, 119, 241, .35),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.pro-btn-home:hover {

    transform: translateY(-4px);

    box-shadow:
        0 28px 70px rgba(133, 119, 241, .45),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

/* -------------------------------- */

@media (max-width:1100px) {

    .pro-card {

        padding: 90px 55px;
    }

    .pro-features-home {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:680px) {

    .pro-section-home {

        padding: 120px 18px;
    }

    .pro-card {

        padding: 60px 26px;

        border-radius: 30px;
    }

    .pro-card h2 {

        font-size: clamp(46px, 12vw, 70px);

        letter-spacing: -3px;
    }

    .pro-card>p {

        font-size: 17px;
    }

    .pro-features-home {

        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .pro-btn-home {

        width: 100%;
    }
}


@media (max-width: 560px) {

    /* Home */
    .hero {
        padding-top: 95px !important;
        min-height: auto !important;
    }

    .hero-copy {
        padding-top: 0 !important;
        margin-top: -10px !important;
    }

    /* Features */
    .features-hero-ministry {
        padding-top: 95px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
    }

    .features-hero-copy {
        margin-top: -10px !important;
    }

    /* Pro */
    .pro-hero,
    .pro-page-hero {
        padding-top: 95px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
    }

    .pro-hero-copy,
    .pro-page-hero {
        margin-top: -23px !important;
    }

    /* Community */
    .community-hero-v2 {
        min-height: auto !important;
        display: block !important;
        padding-top: 95px !important;
    }

    .community-hero-copy {
        margin-top: 0px !important;
    }

    .community-hero-copy h1 {
        margin-top: 0 !important;
    }

    .community-page-hero {
        padding-top: 95px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
        margin-top: -70px !important;
    }

    /* About */
    .about-hero-premium,
    .about-hero {
        padding-top: 95px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
    }

    .about-hero-copy {
        margin-top: 0px !important;
    }

    .about-hero-copy h1 {
        margin-top: 0 !important;
    }

    /* Login */
    .legal-hero {
        margin-top: -70px !important;
         padding-top: 95px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
    }
}




/* =========================================
   LEGAL PAGE
========================================= */

.legal-hero {
    position: relative;
    padding: 100px 24px 90px;
    text-align: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 0%, rgba(133,119,241,.24), transparent 38%),
        #000;
}

.legal-hero h1 {
    margin: 22px auto 0;
    font-size: clamp(58px, 7vw, 95px);
    line-height: .9;
    letter-spacing: -3px;
    font-weight: 800;
}

.legal-hero p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.62);
    font-size: 20px;
    line-height: 1.6;
}

.legal-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px 24px 150px;
}

.legal-nav {
    position: sticky;
    top: 98px;
    z-index: 20;

    display: flex;
    justify-content: center;
    gap: 12px;

    margin-bottom: 36px;
}

.legal-nav a {
    padding: 12px 18px;
    border-radius: 999px;

    color: rgba(255,255,255,.76);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);

    text-decoration: none;
    font-weight: 800;

    backdrop-filter: blur(20px);
}

.legal-section {
    scroll-margin-top: 140px;

    padding: 58px;
    margin-top: 28px;

    border-radius: 38px;

    background:
        radial-gradient(circle at 85% 0%, rgba(133,119,241,.12), transparent 35%),
        rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);
}

.legal-label {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;

    color: #b8a9ff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);

    font-size: 13px;
    font-weight: 850;
}

.legal-section h2 {
    margin: 22px 0 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
}

.legal-updated {
    margin-top: 16px !important;
    color: rgba(255,255,255,.42) !important;
    font-size: 15px !important;
}

.legal-section h3 {
    margin: 42px 0 12px;
    font-size: 24px;
    letter-spacing: -.8px;
}

.legal-section p,
.legal-section li {
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1.75;
}

.legal-section a {
    color: #b8a9ff;
}

.legal-section ul{
    margin:18px 0 30px 24px;
    padding:0;
}

.legal-section li{
    margin-bottom:12px;
    color:rgba(255,255,255,.65);
    font-size:17px;
    line-height:1.75;
}

.legal-section li::marker{
    color:#8577F1;
}

@media (max-width: 560px) {
    .legal-hero {
        padding: 110px 18px 60px;
    }

    .legal-content {
        padding: 28px 18px 110px;
    }

    .legal-nav {
        top: 82px;
        flex-wrap: wrap;
    }

    .legal-section {
        padding: 34px 24px;
        border-radius: 30px;
    }

    .legal-section h2 {
        letter-spacing: -2px;
    }
}