@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --velvet-black: #070005;
    --velvet-red: #ff002f;
    --velvet-pink: #ff3db8;
    --velvet-gold: #ffc400;
    --velvet-wine: #240009;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 0, 47, 0.22), transparent 32rem),
        radial-gradient(circle at 85% 20%, rgba(255, 61, 184, 0.18), transparent 28rem),
        linear-gradient(180deg, #070005 0%, #120006 44%, #050003 100%);
}

.hero-bg {
    background:
        radial-gradient(circle at 74% 44%, rgba(255, 196, 0, 0.22), transparent 18rem),
        radial-gradient(circle at 72% 54%, rgba(255, 61, 184, 0.36), transparent 30rem),
        radial-gradient(circle at 18% 22%, rgba(255, 0, 47, 0.28), transparent 28rem),
        linear-gradient(180deg, rgba(7, 0, 5, 0.18) 0%, rgba(7, 0, 5, 0.92) 100%);
}

.hero-section #hero-bg {
    filter: brightness(1.08) contrast(1.08) saturate(1.24);
    transform: scale(1.02);
}

.hero-spotlight {
    background:
        linear-gradient(115deg, rgba(7, 0, 5, 0.98) 0%, rgba(7, 0, 5, 0.62) 38%, rgba(7, 0, 5, 0.1) 72%),
        linear-gradient(180deg, rgba(7, 0, 5, 0.12) 0%, rgba(7, 0, 5, 0.9) 100%);
}

.hero-proof-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 196, 0, 0.34);
    background: rgba(0, 0, 0, 0.46);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.58rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-cta {
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0), rgba(255,255,255,0.28));
    transform: translateX(-75%);
    animation: cta-shine 2.9s ease-in-out infinite;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0 1.6rem 4rem rgba(255, 0, 47, 0.64), 0 0 0 0.45rem rgba(255, 196, 0, 0.1);
}

.hero-cta-pulse {
    position: absolute;
    inset: -0.55rem;
    border-radius: inherit;
    border: 1px solid rgba(255, 196, 0, 0.45);
    animation: cta-pulse 1.8s ease-out infinite;
}

.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 1rem;
    backdrop-filter: blur(18px);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--velvet-gold);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
}

.hero-stat span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-match-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.62), 0 0 3.5rem rgba(255, 61, 184, 0.22);
}

.hero-card-main {
    right: 9%;
    top: 3%;
    width: min(25rem, 48vw);
    height: 34rem;
    z-index: 3;
    border-radius: 2.4rem;
    transform: rotate(2deg);
}

.hero-card-side {
    width: 15rem;
    height: 20rem;
    z-index: 2;
    border-radius: 2rem;
}

.hero-card-top {
    right: 0;
    top: 0;
    transform: translate(8%, -8%) rotate(9deg);
}

.hero-card-bottom {
    left: 5%;
    bottom: 3%;
    transform: rotate(-8deg);
}

.hero-floating-note {
    position: absolute;
    right: 7%;
    bottom: 2%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 196, 0, 0.36);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    padding: 0.8rem 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
}

.hero-mobile-preview {
    display: none;
}

@keyframes cta-shine {
    0%, 46% {
        transform: translateX(-85%);
    }
    70%, 100% {
        transform: translateX(85%);
    }
}

@keyframes cta-pulse {
    0% {
        opacity: 0.72;
        transform: scale(0.96);
    }
    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px -24px rgb(255 0 47 / 0.72);
}

.glow-red {
    text-shadow: 0 0 18px rgb(255 0 47 / 0.9), 0 0 52px rgb(255 61 184 / 0.55);
}

.tail-container * {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', sans-serif;
}

.neon-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 60px rgba(0,0,0,0.35);
}

.lust-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 184, 0.45);
    background: rgba(255, 0, 47, 0.16);
    color: #ffd7ef;
    padding: 0.32rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.whatsapp-icon {
    width: 1.35rem;
    height: 1.35rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.slider-track {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-card {
    flex: 0 0 86%;
}

@media (min-width: 768px) {
    .slider-card {
        flex-basis: 44%;
    }
}

@media (min-width: 1280px) {
    .slider-card {
        flex-basis: 30%;
    }
}

.slider-dot.active {
    width: 2.25rem;
    background: linear-gradient(90deg, var(--velvet-red), var(--velvet-pink));
}

@media (max-width: 767px) {
    body {
        padding-bottom: 6.25rem;
    }

    nav {
        display: none;
    }

    .tail-container section:first-of-type {
        height: auto;
        min-height: 100svh;
        padding-top: 1rem;
        padding-bottom: 5.5rem;
    }

    .hero-section {
        align-items: flex-start;
    }

    .hero-section #hero-bg {
        background-position: 64% center;
        filter: brightness(1.02) contrast(1.08) saturate(1.18);
    }

    .hero-spotlight {
        background:
            linear-gradient(180deg, rgba(7, 0, 5, 0.72) 0%, rgba(7, 0, 5, 0.58) 42%, rgba(7, 0, 5, 0.94) 100%),
            linear-gradient(90deg, rgba(7, 0, 5, 0.9), rgba(7, 0, 5, 0.18));
    }

    .tail-container section:first-of-type > .absolute.bottom-10 {
        display: none;
    }

    .tail-container h1 {
        font-size: 2.35rem !important;
        line-height: 0.96 !important;
        letter-spacing: -0.08rem !important;
        margin-bottom: 0.9rem !important;
    }

    .tail-container h2 {
        font-size: 2.15rem !important;
        line-height: 1.02 !important;
        letter-spacing: -0.04rem !important;
    }

    .tail-container p {
        font-size: 0.96rem !important;
        line-height: 1.42 !important;
        margin-bottom: 1rem !important;
    }

    .hero-section > .relative {
        gap: 1rem;
        padding-inline: 1rem;
    }

    .hero-section .inline-flex.mb-6 {
        margin-bottom: 0.85rem !important;
    }

    .hero-mobile-preview {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 5.4rem;
        gap: 0.65rem;
        margin: 1rem 0 1rem;
    }

    .hero-mobile-photo,
    .hero-mobile-mini {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(0, 0, 0, 0.5);
        box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.52), 0 0 2rem rgba(255, 61, 184, 0.22);
    }

    .hero-mobile-photo {
        height: 12.8rem;
        border-radius: 1.45rem;
    }

    .hero-mobile-stack {
        display: grid;
        gap: 0.65rem;
    }

    .hero-mobile-mini {
        height: 6.05rem;
        border-radius: 1.1rem;
    }

    .hero-mobile-mini img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-mobile-mini::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
    }

    .hero-mobile-mini span {
        position: absolute;
        left: 0.45rem;
        right: 0.45rem;
        bottom: 0.45rem;
        z-index: 1;
        font-size: 0.62rem;
        font-weight: 900;
        color: #fff;
    }

    .hero-proof-pill {
        padding: 0.44rem 0.62rem;
        font-size: 0.62rem;
        letter-spacing: 0.05em;
    }

    .hero-section .flex.flex-wrap.gap-3.mb-8 {
        gap: 0.45rem;
        margin-bottom: 0.95rem !important;
    }

    .hero-stat {
        padding: 0.72rem 0.55rem;
        border-radius: 1rem;
    }

    .hero-section .mt-10.grid {
        margin-top: 1rem !important;
        gap: 0.5rem;
    }

    .hero-stat strong {
        font-size: 1.15rem;
    }

    .hero-stat span {
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }

    .lust-tag {
        padding: 0.25rem 0.55rem;
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .slider-card {
        flex-basis: 88%;
    }

    .slider-card .relative.h-\[34rem\] {
        height: 29rem;
    }

    .whatsapp-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .tail-container button:not(.mobile-fixed-cta) {
        padding: 0.8rem 1rem !important;
        font-size: 0.92rem !important;
        line-height: 1.1 !important;
    }

    .tail-container .hero-cta {
        width: 100%;
        padding: 1rem 1.1rem !important;
        font-size: 1rem !important;
        box-shadow: 0 1.1rem 3rem rgba(255, 0, 47, 0.58);
    }

    .hero-section .text-sm.leading-relaxed {
        text-align: center;
        width: 100%;
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: max(1rem, env(safe-area-inset-bottom));
        z-index: 60;
        width: auto !important;
        max-width: 25rem !important;
        margin-inline: auto !important;
        padding: 0.95rem 1.2rem !important;
        border-radius: 999px !important;
        font-size: 1rem !important;
        line-height: 1 !important;
        gap: 0.55rem !important;
        transform: none !important;
        box-shadow: 0 1rem 2.5rem rgba(255, 0, 47, 0.5);
    }

    .mobile-fixed-cta:hover {
        transform: none !important;
    }

    .mobile-fixed-cta span {
        font-size: 1.45rem !important;
    }
}
