body {
  margin: 0;
  height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #b45aa058, transparent 60%),
    radial-gradient(circle at 70% 20%, #8c46c04d, transparent 60%),
    radial-gradient(circle at 40% 70%, #c878be4d, transparent 60%),
    radial-gradient(circle at 80% 80%, #a03ca052, transparent 60%),
    radial-gradient(circle at 0% 100%, #c878aa40, transparent 70%),
    #121832;
  background-attachment: fixed;
  background-size: cover;
}

.download-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 80px 120px;
    position: relative;
    overflow: hidden;
    font-family: "Figtree-local", sans-serif;
}

.download-text {
    max-width: 560px;
    transform: translateX(200px) translateY(-20px); 
}

.beta-pill {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-text h1 {
    font-family: "Figtree-local", sans-serif;
    font-weight: 750;
    font-size: 70px;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 0 6px 32px rgba(0,0,0,0.55);
    margin-bottom: 20px;
}

.download-h1-span {
    background: linear-gradient(90deg, #D47DF9, #F274C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-text p {
    font-family: "Figtree-local", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    max-width: 440px;
    color: #f3d8ff;
    margin-bottom: 28px;
}

.btn-secondary {
    font-family: "Figtree-local", sans-serif;
    display: inline-flex;
    padding: 12px 26px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 14px;
    margin-right: 10px;
    cursor: not-allowed;
    opacity: .6;
}

.download-buttons {
    font-family: "Figtree-local", sans-serif;
}

.btn-primary-download {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);

    font-family: "Figtree-local", sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transform: translateX(80px) translateY(20px);

    transition: background .15s ease, transform .15s ease;
}

.btn-primary-download:hover {
    background: rgba(7, 179, 247, 0.3);
}

.download-phone {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;

    margin-right: 200px;
    transform: translateY(-25px);
}

.download-phone img {
    max-width: 600px;
    width: 100%;
    margin-top: 60px;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.7));
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 1580px) {

html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
  }

    .download-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px 20px 20px;
        gap: 20px;
    }

    .download-text {
        max-width: 100%;
        transform: none !important;
        text-align: left;
        text-shadow: 0 0 8px rgba(0,0,0,0.6),
                     0 0 14px rgba(0,0,0,0.4);
    }

    .beta-pill {
        margin-bottom: 12px;
        font-size: 12px;
        padding: 6px 16px;
    }

    .download-text h1 {
        font-size: 2.4rem;
        line-height: 1.12;
        margin-bottom: 8px;
    }

    .download-text p {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .btn-secondary {
        font-size: 0.9rem;
        padding: 8px 18px;
        margin-right: 8px;
        margin-top: 10px;
        opacity: 0.7;
    }

    .btn-primary-download {
        font-size: 0.95rem;
        padding: 10px 22px;
        margin-top: 10px;
        border-radius: 14px;
        transform: none !important; 
    }

    .download-phone {
        width: 100%;
        margin-right: 0;
        margin-top: 0px;
        justify-content: center;
        align-items: center;
        transform: none !important;
    }

    .download-phone img {
        width: 80%;
        max-width: 320px;
        height: auto;
        filter: drop-shadow(0 24px 40px rgba(0,0,0,0.7));
    }
}