@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Keeping variables for the blobs and other custom elements */
    --primary: #FF005E;
    --primary-dark: #cc004b;
    --secondary: #002580;
    --background: #050508;
    --surface: #121218;
    --surface-hover: #1A1A22;
    --text-main: #FFFFFF;
    --text-muted: #A0A0B0;
    --border: #2A2A35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 0, 94, 0.14), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(0, 37, 128, 0.16), transparent 35%),
        linear-gradient(180deg, #06060b 0%, #050508 55%, #030307 100%);
}

::selection {
    background: rgba(255, 0, 94, 0.35);
    color: #fff;
}

/* Custom Blobs for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0; 
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    filter: blur(150px);
    opacity: 0.14;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero h1 {
    letter-spacing: -0.03em;
}

.hero p {
    line-height: 1.8;
}

.phone-mockup {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03);
    animation: floatPhone 7s ease-in-out infinite;
}

@keyframes floatPhone {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.role-card,
.feature-card {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.role-card::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
    pointer-events: none;
}

.feature-icon {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 26px rgba(255, 0, 94, 0.2);
}

.app-screens-scroller img {
    transform-origin: center;
}

.app-screens-scroller img:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
}

footer {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
        #020203;
}

/* Utilities */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.mask-linear-fade {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

@media (max-width: 768px) {
    .hero h1 {
        letter-spacing: -0.02em;
        line-height: 1.15;
    }

    .phone-mockup {
        animation: none;
    }
}
