:root {
    --white: #ffffff;
    --black: #000000;
    --pink-accent: #F42991;
    --dark-purple: #1d0211;
    --golden: #f3d8b0;
    --dark-golden: #a87e4d;
}

html {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "archivo", sans-serif;
    background-color: #1c0211;
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
}

/*************************** HERO ***************************/
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 36px 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #190310;
    isolation: auto;
}

.hero-section > .container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.logo-top {
    text-align: center;
    margin-bottom: -30px;
    position: relative;
    display: flex;
}

.logo-top img {
    max-width: 350px;
    height: auto;
    margin-bottom: 15px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}

.hero-title {
    font-family: "argent-cf", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.05;
    color: var(--golden);
}

.hero-title-sub {
    display: block;
    font-size: 0.82em;
    margin-top: 4px;
}

.badge-free {
    background: transparent;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 1px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 2rem;
    border: solid 2px var(--pink-accent);
    position: relative;
    top: -4px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 620px;
}

.hero-copy-title {
    color: var(--golden);
    font-size: 1.4rem;
}

.hero-copy p {
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 300;
    color: var(--white);
}

.hero-copy strong {
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(to bottom, #6ced51, #005f05);
    color: #ffffff;
    padding: 0 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 -1px 45px rgb(138 255 94 / 36%);
    margin-top: 1rem;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 360px;
    text-shadow: 1px 2px 3px #0000005e;
}

.btn-whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(1px 2px 3px #0000005e);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 -1px 55px rgb(138 255 94 / 50%);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    mix-blend-mode: lighten;
}

.hero-image img {
    width: 100%;
    max-width: 370px;
    height: auto;
    display: block;
    transform: rotate(14deg);
}

.hero-image.mobile {
    display: none;
}

@media (max-width: 576px) {
    .hero-image img {
        max-width: 370px;
    }
}

/*************************** HERO RIBBONS ***************************/
.hero-ribbons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 280px;
    /* overflow: hidden; */
    pointer-events: none;
    z-index: 3;
}

.hero-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300vw;
    background: #B01362;
    padding: 20px 0;
    white-space: nowrap;
    /* border: solid 1px #F4D9B1; */
}

.hero-ribbon--left {
    transform: translate(-50%, -55%) rotate(-8deg);
}

.hero-ribbon--right {
    transform: translate(-50%, -45%) rotate(8deg);
    box-shadow: 0 0 20px 10px #16021287;
}

.hero-ribbon-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ribbon-marquee 140s linear infinite;
}

.hero-ribbon-track.is-reverse {
    animation-direction: reverse;
}

.hero-ribbon-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-ribbon-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
}

.hero-ribbon-icon {
    width: 48px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.hero-ribbon-text {
    font-family: "archivo", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #F4D9B1;
    white-space: nowrap;
}

@keyframes ribbon-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ribbon-track {
        animation: none;
    }
}

/*************************** RESPONSIVE ***************************/
@media (max-width: 968px) {
    .hero-section {
        padding: 28px 0 180px;
        min-height: auto;
    }

    .hero-section > .container {
        padding-bottom: 16px;
    }

    .hero-ribbons {
        height: 220px;
    }

    .hero-ribbon {
        padding: 12px 0;
        width: 320vw;
    }

    .hero-ribbon-text {
        font-size: 0.95rem;
    }

    .hero-ribbon-icon {
        width: 40px;
    }

    .logo-top {
        margin-bottom: 28px;
        justify-content: center;
    }

    .logo-top img {
        max-width: 350px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .btn-primary {
        align-self: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-copy {
        max-width: 560px;
    }

    .hero-copy p {
        font-size: 1.1rem;
    }

    .hero-image.desktop {
        display: none;
    }

    .hero-image.mobile {
        display: flex;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 28px 0 160px;
    }

    .hero-ribbons {
        height: 190px;
    }

    .hero-ribbon {
        width: 360vw;
    }

    .hero-ribbon--left {
        transform: translate(-50%, -55%) rotate(-8deg);
    }

    .hero-ribbon--right {
        transform: translate(-50%, -45%) rotate(8deg);
    }

    .hero-ribbon-text {
        font-size: 0.85rem;
    }

    .hero-ribbon-icon {
        width: 34px;
    }

    .hero-ribbon-item {
        gap: 12px;
        padding: 0 12px;
    }

    .logo-top {
        margin-bottom: 10px;
    }

    .logo-top img {
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-copy p {
        font-size: 1.02rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
        font-size: 1rem;
    }

    .hero-image.mobile {
        max-width: 160px;
    }
}

/*************************** FEATURES SECTION ***************************/
.features-section {
    position: relative;
    padding: 100px 0 110px;
    text-align: center;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        0deg,
        rgba(46, 6, 29, 0) 0%,
        #2E061D 48%,
        #37031F 100%
    );
    opacity: .9;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-heading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    max-width: 820px;
}

.features-heading-icon {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-60%);
    width: 110px;
    height: auto;
    opacity: 0.95;
    z-index: 0;
    pointer-events: none;
}

.features-title {
    position: relative;
    z-index: 1;
    font-family: "argent-cf", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #F4D9B1;
    margin: 0;
    max-width: 630px;
}

.features-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.45;
    color: #fff;
    max-width: 720px;
    margin: 0 auto 56px;
}

.features-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
    max-width: 1100px;
    margin: 0 auto 90px;
    padding: 0;
    text-align: left;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.features-check {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
}

.features-item span {
    font-family: "archivo", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.25;
}

.features-cta {
    display: flex;
    justify-content: center;
}

.features-cta .btn-primary {
    align-self: center;
    margin-top: 0;
}

@media (max-width: 968px) {
    .features-section {
        padding: 80px 0 90px;
    }

    .features-heading-icon {
        width: 88px;
        left: -16px;
    }

    .features-title {
        font-size: 2.3rem;
    }

    .features-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 8px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 24px;
        margin-bottom: 44px;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 60px 0 70px;
    }

    .features-heading {
        display: block;
        padding: 0 8px;
    }

    .features-heading-icon {
        width: 72px;
        left: 0;
        top: -8px;
        transform: none;
    }

    .features-title {
        font-size: 1.85rem;
    }

    .features-subtitle {
        font-size: 1.02rem;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 36px;
        max-width: 420px;
    }

    .features-item span {
        font-size: 0.95rem;
    }

    .features-check {
        width: 24px;
        height: 24px;
    }

    .features-cta .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}

/*************************** AUDIENCE SECTION ***************************/
.audience-section {
    position: relative;
    padding: 100px 0 400px;
    background-color: #190310;
    background-image: url(../images/bg-bottom-004.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-bottom: -140px;

}

.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        180deg,
        #1C0211 0%,
        rgba(28, 2, 17, 0) 100%
    );
}

.audience-section .container {
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.audience-title {
    font-family: "argent-cf", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: #F4D9B1;
    margin: 0 0 18px;
}

.audience-intro {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.45;
    color: var(--white);
    margin: 0 0 32px;
    max-width: 560px;
}

.audience-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-item {
    background: linear-gradient(180deg, #8a1458 0%, #4a0a30 100%);
    border-radius: 12px;
    overflow: hidden;
}

.audience-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.audience-trigger-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.audience-trigger-text strong {
    font-family: "archivo", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
}

.audience-chevron {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.audience-chevron::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform 0.25s ease;
}

.audience-item.is-open .audience-chevron::before {
    transform: translate(-50%, -30%) rotate(225deg);
}

.audience-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.audience-item.is-open .audience-panel {
    grid-template-rows: 1fr;
}

.audience-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.audience-panel-inner > p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.70);
    text-align: left;
}

.audience-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audience-media img {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(244, 41, 145, 0.25));
}

/*************************** ABOUT SECTION ***************************/
.about-section {
    padding: 60px 0 0;
    background-color: #190310;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: end;
}

.about-media {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-media img {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(244, 41, 145, 0.28));
}

.about-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 48px;
}

.about-title {
    font-family: "argent-cf", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: #F4D9B1;
    margin: 0 0 22px;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.about-copy p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
}

.about-content .btn-primary {
    margin-top: 0;
    align-self: flex-start;
}

.about-content .copyright {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .audience-section {
        padding: 80px 0 50px;
        margin-bottom: 0px;
    }

    .audience-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .audience-title,
    .about-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .audience-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .audience-media {
        order: -1;
    }

    .audience-media img {
        max-width: 360px;
    }

    .about-section {
        padding: 40px 0 0;
    }

    .about-content {
        text-align: center;
        padding-bottom: 40px;
        order: 1;
    }

    .about-media {
        order: 2;
    }

    .about-content .btn-primary {
        align-self: center;
        margin: 0 auto;
    }

    .about-content .copyright {
        text-align: center;
    }

    .about-media img {
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .audience-section {
        padding: 60px 0 40px;
        margin-bottom: 0px;
    }

    .audience-title,
    .about-title {
        font-size: 2rem;
    }

    .audience-intro,
    .about-copy p {
        font-size: 1.02rem;
    }

    .audience-trigger {
        padding: 16px;
    }

    .audience-trigger-text strong {
        font-size: 0.95rem;
    }

    .about-section {
        padding-top: 30px;
    }

    .about-content {
        padding-bottom: 32px;
    }

    .about-content .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}



@media (max-width: 540px) {
    .badge-free {
        letter-spacing: 0.02em;
        font-size: 1.3rem;
    }
    
    .hero-image.mobile {
        max-width: 140px;
        position: relative;
        top: -20px;
        margin-bottom: -40px;
    }

    .btn-primary {
        max-width: 300px;
    }

    .audience-media img {
        max-width: 360px;
        margin-top: -130px;
        margin-bottom: -70px;
        width: 70%;
    }
    .audience-title {
        max-width: 200px;
        margin: 0 auto 18px;
    }
    .audience-section {
        padding: 60px 0 210px;
        margin-bottom: -110px;
    }

    .hero-copy-title {
        color: var(--golden)!important;
        font-size: 1.4rem!important;
    }
}

/*************************** VIP MODAL ***************************/
.vip-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vip-modal[hidden] {
    display: none;
}

.vip-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 1, 8, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vip-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 40px 28px 32px;
    border-radius: 22px;
    border: 1px solid rgb(255 255 255 / 45%);
    background: rgb(255 255 255 / 3%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vip-modal.is-open .vip-modal-backdrop {
    opacity: 1;
}

.vip-modal.is-open .vip-modal-dialog {
    opacity: 1;
    transform: translateY(0);
}

.vip-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgb(255 255 255 / 8%);
    color: #ffffff6e;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.vip-modal-close:hover {
    background: rgba(0, 0, 0, 0.55);
}

.vip-modal-title {
    font-family: "argent-cf", sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.3;
    color: #F4D9B1;
    margin: 0 0 24px;
    padding: 0 12px;
    max-width: 340px;
}

.vip-modal-media {
    width: 100%;
    margin-bottom: 28px;
}

.vip-modal-media img {
    display: block;
    width: 100%;
    height: auto;
}

.vip-modal-cta {
    align-self: center;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

body.vip-modal-open {
    overflow: hidden;
}

@media (max-width: 576px) {
    .vip-modal {
        padding: 16px;
    }

    .vip-modal-dialog {
        padding: 56px 18px 34px;
        border-radius: 18px;
    }

    .vip-modal-title {
        font-size: 1.28rem;
        margin-bottom: 20px;
    }
}