body {
    font-family: "Inter", sans-serif;
}

.header-bg {
    background: linear-gradient(135deg, #3b3d99 0%, #5254cc 50%, #696cff 100%);
}

.footer-bg {
    background: linear-gradient(135deg, #3b3d99 0%, #5254cc 100%);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
}

.hero-highlight {
    color: #93c5fd;
}

.hero-text {
    max-width: 28rem;
}

.hero-mobile {
    height: clamp(420px, 45vw, 520px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.wave-divider {
    line-height: 0;
}

.wave-svg {
    width: 100%;
    height: 70px;
    display: block;
}

.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: #696cff;
    filter: blur(80px);
    opacity: 0.2;
}

.blob-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: #818cf8;
    filter: blur(70px);
    opacity: 0.18;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 17%;
    left: 8%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.circle-2 {
    width: 140px;
    height: 140px;
    top: 12%;
    left: 6%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-3 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 15%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 42%;
    border: 1.5px solid rgba(147, 197, 253, 0.4);
}

.circle-5 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 8%;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.circle-6 {
    width: 90px;
    height: 90px;
    bottom: 18%;
    right: 11%;
    border: 2px solid rgba(147, 197, 253, 0.35);
}

.circle-7 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 3%;
    background: rgba(147, 197, 253, 0.25);
}

.circle-8 {
    width: 20px;
    height: 20px;
    top: 75%;
    right: 35%;
    background: rgba(255, 255, 255, 0.18);
}

.circle-9 {
    width: 14px;
    height: 14px;
    top: 25%;
    left: 35%;
    background: rgba(255, 255, 255, 0.22);
}

.mobile-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.phone-wrapper {
    width: 260px;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.phone-shell {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.scanner-box {
    background: #f8fafc;
}

.qr-image {
    display: block;
}

.cashback-card {
    background: #f0efff;
    border: 1px solid #c5c4ff;
}

.benefit-card {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
    border: 1px solid #e8e7ff;
}

.benefit-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.benefit-blob-top {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    background: #f0efff;
}

.benefit-blob-bottom {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: 20px;
    background: #f5f4ff;
}

.benefit-icon {
    border: 1px solid #bfdbfe;
}

.coin-wrap {
    gap: 0;
}

.coin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.coin-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    margin-right: -6px;
}

.coin-2 {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-mobile {
    animation: floating 4s ease-in-out infinite;
}

.animate-phone {
    animation: floating 4s ease-in-out infinite;
}