@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff; /* light.background */
    color: #11181C; /* light.text */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    /* pronounced glassmorphic container */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

.hero {
    animation: slideInUp 1s ease-in-out;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #11181C; /* light.text */
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #687076; /* light.icon */
    margin-bottom: 2rem;
}

/* Highlight specific phrases with blue tint and bold text */
.highlight-text {
    color: #0a7ea4; /* light.tint */
    font-weight: 600;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.card {
    background: #f4f7f6; /* A slightly off-white for cards */
    padding: 1.5rem;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: popIn 0.5s ease-in-out backwards;
}

.card:nth-child(1) {
    animation-delay: 0.2s;
}

.card:nth-child(2) {
    animation-delay: 0.4s;
}

.card:nth-child(3) {
    animation-delay: 0.6s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a7ea4; /* light.tint */
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9rem;
    color: #687076; /* light.icon */
}

.store-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    animation: popIn 0.5s ease-in-out backwards;
    animation-delay: 0.8s;
}

.store-button img {
    transition: transform 0.3s ease;
}

.store-button:not(.apple) img {
    width: 168px;
    height: auto;
}

.store-button.apple img {
    height: 45px;
}

.store-button:hover img {
    transform: scale(1.05);
}

/* Prompt text above store buttons */
.download-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #11181C; /* light.text */
    margin-top: 3rem;
    margin-bottom: -1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
