@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Questrial&display=swap');
:root {
    --void: #e1e1e1;
    --surface: #17120C;
    --surface-2: #1F1811;
    --hairline: #60209c;
    --gold-100: #F6E3A8;
    --gold-400: #60209c;
    --gold-600: #9C7B1F;
    --crimson: #A8232E;
    --crimson-bright: #D6383F;
    --cream: #000;
    --cream-dim: #000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}


/* ambient texture */

.glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(560px 420px at 50% -8%, rgb(130 55 212 / 16%), transparent 65%), radial-gradient(420px 320px at 90% 10%, rgb(98 35 168 / 10%), transparent 60%);
}


/* top bar */

header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hairline);
}

.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.header-logo {
    height: 60px;
    object-fit: cover;
}

.header-button-group {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.header-button-group a,
.header-cta a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #fff;
    border-radius: 100px;
    height: 40px;
    padding: 0 20px;
    transition: all 0.3s;
}

.header-button-group a img,
.header-cta a img {
    width: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.btn-download-apk {
    background-color: #60209c;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-download-apk:hover {
    box-shadow: 0px 15px 35px rgba(96, 32, 156, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0px 15px 35px rgba(32, 156, 38, 0.3);
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.brand small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--cream-dim);
    margin-top: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 3px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
    background: linear-gradient(180deg, var(--gold-100), var(--gold-400) 60%, var(--gold-600));
    color: #241a05;
    box-shadow: 0 8px 22px -8px rgba(212, 175, 55, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(212, 175, 55, 0.7);
}

.btn-ghost {
    border-color: var(--hairline);
    color: var(--cream);
    background: transparent;
    padding: 10px 20px;
    font-size: 13px;
}

.btn-ghost:hover {
    border-color: var(--gold-400);
    color: var(--gold-100);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 12px;
}


/* hero */

.hero {
    position: relative;
    padding: 76px 0 60px;
    text-align: center;
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #000;
    background: rgba(166, 55, 212, 0.06);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson-bright);
    box-shadow: 0 0 8px 2px rgba(214, 56, 63, 0.8);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .35;
    }
}

.wordmark {
    margin: 26px 0 6px;
    line-height: 0.92;
    font-size: clamp(52px, 11vw, 108px);
    font-weight: 900;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, var(--gold-100) 10%, var(--gold-400) 55%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: clamp(15px, 2.4vw, 19px);
    color: var(--cream-dim);
    font-weight: 500;
    max-width: 520px;
    margin: 0 auto 34px;
}


/* reel — signature element */

.reel-stage {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 40px;
}

.reel {
    width: 74px;
    height: 96px;
    border-radius: 8px;
    background: linear-gradient(180deg, #241C12, #100C08);
    border: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.6), 0 10px 24px -12px rgba(0, 0, 0, 0.7);
}

.reel::before,
.reel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 26px;
    z-index: 2;
}

.reel::before {
    top: 0;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0.95), transparent);
}

.reel::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(16, 12, 8, 0.95), transparent);
}

.reel-strip {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--gold-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: spin 2.6s cubic-bezier(.2, .85, .25, 1) 1;
}

.reel-strip span {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel:nth-child(1) .reel-strip {
    animation-delay: 0s;
}

.reel:nth-child(2) .reel-strip {
    animation-delay: 0.18s;
}

.reel:nth-child(3) .reel-strip {
    animation-delay: 0.36s;
}

@keyframes spin {
    0% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-1152px);
    }
    100% {
        transform: translateY(-1248px);
    }
}

.cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-note {
    font-size: 12px;
    color: var(--cream-dim);
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.cta-note b {
    color: var(--gold-400);
    font-weight: 700;
}


/* trust strip */

.trust {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 30px 0;
    background: var(--hairline);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.trust-item img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--gold-400);
}

section {
    position: relative;
    padding: 88px 0;
}

.kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold-400);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

h2 {
    font-weight: 800;
    font-size: clamp(26px, 4vw, 44px);
    text-align: center;
    color: var(--cream);
    margin-bottom: 14px;
    text-transform: capitalize;
}

.sub {
    text-align: center;
    color: var(--cream-dim);
    max-width: 520px;
    margin: 0 auto 56px;
    font-size: 15px;
    line-height: 1.7;
}


/* features */

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    overflow: hidden;
}

.fcard {
    background: transparent;
    padding: 30px 25px;
    text-align: left;
    border: 1px solid var(--hairline);
    /* border-radius: 10px; */
    overflow: hidden;
    position: relative;
}

.fcard span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #171618, #60209c);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.fcard span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #171618, #60209c);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.fcard span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #171618, #60209c);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.fcard span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #171618, #60209c);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.ficon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(123, 55, 212, 0.08);
    border: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ficon svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
}

.fcard h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
}

.fcard p {
    font-size: 14px;
    color: var(--cream-dim);
    line-height: 1.6;
    margin-bottom: 0;
}


/* steps */

.steps {
    display: flex;
    align-items: center;
    gap: 30px;
}

.step {
    text-align: center;
    padding: 0 12px;
    flex: 1;
}

.right-arrow {
    width: 50px;
    flex-shrink: 0;
}

.step-num {
    font-weight: 700;
    font-size: 16px;
    color: var(--gold-400);
    margin: 0 auto 18px;
    text-transform: uppercase;
}

.step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 13.5px;
    color: var(--cream-dim);
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    margin-bottom: 15px;
}


/* stats */

.stats-band {
    background: var(--hairline);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stats .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.stats .stat:last-child {
    border-right: 0;
}

.stat b {
    display: block;
    font-weight: 800;
    font-size: clamp(26px, 4vw, 44px);
    color: #fff;
}

.stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
    font-weight: 600;
}


/* final cta */

.final {
    text-align: center;
}

.final-card {
    border: 2px solid var(--hairline);
    border-radius: 14px;
    padding: 40px 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.card-left {
    flex-shrink: 0;
}

footer {
    border-top: 1px solid var(--hairline);
    padding: 40px 0 30px;
}

.foot-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.foot-links {
    display: flex;
    gap: 22px;
    font-size: 13px;
    color: var(--cream-dim);
}

.foot-links a:hover {
    color: var(--gold-100);
}

.responsible {
    font-size: 11.5px;
    color: var(--cream-dim);
    border-top: 1px solid var(--hairline);
    padding-top: 20px;
    line-height: 1.8;
}

.responsible b {
    color: var(--gold-400);
}

@media(max-width:991.98px) {
    .header-button-group a span {
        display: none;
    }
    .header-button-group a {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 10px;
    }
    .stats .stat:nth-child(2) {
        border-right: 0;
    }
    .steps {
        flex-direction: column;
        gap: 25px;
    }
    .right-arrow {
        width: 50px;
        flex-shrink: 0;
        transform: rotate(90deg);
    }
    .step p {
        margin-bottom: 0;
    }
    .final-card {
        gap: 30px;
        flex-direction: column-reverse;
    }
    .final-card .card-right img {
        width: 300px;
    }
}

@media(max-width:860px) {
    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }
    .trust-row {
        gap: 18px 26px;
        justify-content: center;
    }
}

@media(max-width:520px) {
    .grid4 {
        grid-template-columns: 1fr;
    }
    .reel {
        width: 58px;
        height: 76px;
    }
    .reel-strip span {
        height: 76px;
    }
    .reel-strip {
        font-size: 40px;
    }
    @keyframes spin {
        0% {
            transform: translateY(0);
        }
        70% {
            transform: translateY(-912px);
        }
        100% {
            transform: translateY(-988px);
        }
    }
    .header-logo {
        height: 45px;
    }
    .header-button-group a {
        width: 45px;
        height: 45px;
    }
    .header-button-group {
        gap: 10px;
    }
    .wordmark img {
        width: 250px;
    }
    .header-cta {
        flex-direction: column;
        gap: 12px;
    }
    .trust-row {
        gap: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item img {
        width: 35px;
    }
    .trust-item {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
        font-weight: 500;
    }
    .stat span {
        font-size: 12px;
    }
    .wrap.contactcard {
        padding: 40px 10px !important;
    }
    section {
        padding: 40px 0;
    }
    .sub {
        margin-bottom: 30px;
    }
    .final-card {
        padding: 50px 20px;
        gap: 20px;
    }
    .final-card .card-right img {
        width: 200px;
    }
}