/* Reset */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    color: white;
}

/* Background gradient */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: black;
    background-image:
        /* 1) #9A3535 */
        radial-gradient(
        1200px 1800px at 92% 120%,
        rgba(154, 53, 53, 0.77) 0%,
        rgba(154, 53, 53, 0.45) 35%,
        rgba(154, 53, 53, 0.18) 55%,
        rgba(0, 0, 0, 0) 70%
        ),

        /* 2) #FDF0A1 */
        radial-gradient(
        1400px 1900px at 78% 130%,
        rgba(253, 240, 161, 0.77) 0%,
        rgba(253, 240, 161, 0.45) 35%,
        rgba(253, 240, 161, 0.18) 55%,
        rgba(0, 0, 0, 0) 72%
        ),

        /* 3) #F97B99 */
        radial-gradient(
        1300px 2100px at 92% 140%,
        rgba(249, 123, 153, 0.77) 0%,
        rgba(249, 123, 153, 0.42) 35%,
        rgba(249, 123, 153, 0.16) 55%,
        rgba(0, 0, 0, 0) 72%
        ),

        /* 4) #FFF54C */
        radial-gradient(
        1500px 2000px at 88% 150%,
        rgba(255, 245, 76, 0.77) 0%,
        rgba(255, 245, 76, 0.42) 35%,
        rgba(255, 245, 76, 0.16) 55%,

        rgba(0, 0, 0, 0) 75%
        );
}

/* Center content */
.content {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
}

h1 {
    color: #fff;
    text-align: center;

    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0px;
}

/* Subtitle */
.subtitle {
    color: #fff;
    text-align: center;

    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    font-size: clamp(16px, 3.5vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0px;
}

/* Download button */
.download-btn {
    display: flex;
    background: white;
    justify-content: center;
    align-items: center;
    color: black;
    height: 56px;
    padding: 0px 16px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.72px;
    text-decoration: none;
    transition: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Footer links */
.footer {
    position: absolute;
    bottom: 20px;
    left: 24px;
    display: flex;
    gap: 16px;
    font-size: 16px;
}

.footer a {
    color: white;
    text-decoration: none;
}


/* Mobile tweaks */
@media (max-width: 480px) {
    .hero {
        background-image:
            /* 1) deep red - smaller, tucked right */
            radial-gradient(
            270px 520px at 102% 100%,
            rgba(154, 53, 53, 0.77) 0%,
            rgba(154, 53, 53, 0.40) 35%,
            rgba(154, 53, 53, 0.14) 55%,
            rgba(0, 0, 0, 0) 72%
            ),

            /* 2) warm cream - behind bottom text */
            radial-gradient(
            640px 500px at 84% 110%,
            rgba(253, 240, 161, 0.77) 0%,
            rgba(253, 240, 161, 0.40) 35%,
            rgba(253, 240, 161, 0.14) 55%,
            rgba(0, 0, 0, 0) 74%
            ),

            /* 3) pink - subtle mid/bottom */
            radial-gradient(
            600px 580px at 100% 120%,
            rgba(249, 123, 153, 0.77) 0%,
            rgba(249, 123, 153, 0.36) 35%,
            rgba(249, 123, 153, 0.12) 55%,
            rgba(0, 0, 0, 0) 74%
            ),

            /* 4) bright yellow - strongest glow at very bottom */
            radial-gradient(
            720px 570px at 86% 120%,
            rgba(255, 245, 76, 0.80) 0%,
            rgba(255, 245, 76, 0.42) 35%,
            rgba(255, 245, 76, 0.14) 58%,
            rgba(0, 0, 0, 0) 78%
            );
    }

    .content{
        max-width: 284px;
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        width: 284px;
    }

    .terms-content{
        max-width: 284px;
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        width: 284px;
    }
    
    h1 {
        font-size: 40px;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: -1.2px;
    }

    .subtitle {
        font-size: 24px;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: -0.72px;
    }
}

.terms-content {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 648px;
    gap: 24px;
}

.terms {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.48px;
    text-decoration: none;
    transition: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h2 {
    font-size: 40px;
    margin: 0px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -1.2px;
    text-decoration: none;
    transition: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
