.hero {
    text-align: center;
    padding: 5rem 0 4rem;
    position: relative;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 3rem;
    line-height: 1.7;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.app-store-badge img {
    height: 54px;
    width: auto;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--button-gradient);
    color: var(--bg-primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.btn:visited {
    color: var(--bg-primary);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-secondary:hover,
.btn-secondary:visited:hover {
    background: var(--text-color);
    color: var(--bg-primary);
    box-shadow: none;
}

.btn-secondary:visited {
    color: var(--text-color);
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0 5rem;
    flex-wrap: wrap;
}

.platform {
    text-align: center;
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--grid-color);
    border-radius: 8px;
    min-width: 180px;
    position: relative;
}

.platform-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.platform-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.platform-coming-soon {
    font-size: 0.75rem;
    color: var(--accent-secondary);
    margin-top: 0.5rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 5rem 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--grid-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(186, 54, 92, 0.1), rgba(242, 177, 90, 0.1));
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(186, 54, 92, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platforms {
        gap: 1.5rem;
    }

    .platform {
        padding: 1.5rem 2rem;
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem 0 1.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .app-store-badge img {
        height: 48px;
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-width: unset;
    }

    .feature-card {
        padding: 2rem;
    }

    .platform {
        padding: 1.5rem;
        min-width: 130px;
    }

    .platform-icon {
        font-size: 3rem;
    }
}

/* Page load animation (home-specific targets) */
.hero {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.platforms {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}
