/* ==========================================
   APP HERO SHELL
========================================== */

.app-hero-shell {
    padding: 24px var(--page-padding) 90px;
}


/* ==========================================
   APP HERO CARD
========================================== */

.app-hero-card {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;

    background: linear-gradient(
        160deg,
        #3D1E78 0%,
        #6B39BD 45%,
        #8A5BDB 75%,
        #A872FF 100%
    );

    box-shadow:
        0 30px 70px -24px rgba(107, 57, 189, 0.45);
}


/* ==========================================
   TWO-COLUMN GRID
========================================== */

.app-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    align-items: center;
}

.app-hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 64px 48px 64px 56px;
}

.app-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    overflow: hidden;
}


/* ==========================================
   HERO TEXT
========================================== */

.app-hero-eyebrow {
    display: inline-block;

    color: rgba(255, 255, 255, 0.65);

    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.app-hero-title {
    color: var(--white);

    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;

    margin: 0;
}

.app-hero-subtitle {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;
    line-height: 1.7;

    max-width: 400px;

    margin: 0;
}


/* ==========================================
   STORE BADGES
========================================== */

.app-store-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-link {
    display: inline-flex;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.badge-link:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}


/* ==========================================
   SCREENSHOTS
========================================== */

.app-screens {
    position: relative;
    width: 340px;
    height: 460px;
    flex-shrink: 0;
}

.screen {
    position: absolute;
    width: 180px;
    border-radius: 20px;
    box-shadow:
        0 24px 48px -12px rgba(28, 12, 70, 0.5),
        0 4px 12px rgba(28, 12, 70, 0.3);
}

.screen-center {
    width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.screen-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-6deg);
    z-index: 2;
    opacity: 0.92;
}

.screen-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(6deg);
    z-index: 2;
    opacity: 0.92;
}


/* ==========================================
   ACTIVE NAV LINK
========================================== */

.nav-active a {
    color: var(--purple) !important;
    font-weight: 700;
}