/* Hero - Apple-inspired: massive type, breathing room, confidence */
.hero {
    position: relative;
    background: var(--color-navy);
    padding: 160px 0 0;
    overflow: hidden;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 111, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Badge - subtle, not shouty */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Headline - massive, confident */
.hero__title {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero__title .gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle - clean, spaced, readable */
.hero__subtitle {
    font-size: clamp(17px, 1.4vw, 21px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-regular);
}

/* CTAs - generous spacing */
.hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Star rating */
.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hero__stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 2px;
}

.hero__rating > span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: var(--font-weight-regular);
}

/* Trust badges - whisper, don't shout */
.hero__trust {
    margin-bottom: 60px;
}

.hero__trust .trust-badges span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.hero__trust .trust-badges__separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Client logo bar */
.hero__logos {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero__logos-label {
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.hero__logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__client-logo {
    height: 24px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.35;
    filter: brightness(0) invert(1);
    transition: opacity 0.4s ease;
}

.hero__client-logo:hover {
    opacity: 0.7;
}

/* Product screenshots - stacked, floating, cinematic */
.hero__screenshots {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.hero__screenshots-stack {
    position: relative;
    height: 500px;
    perspective: 1200px;
}

.hero__screen {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s ease, filter 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__screen:hover {
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 111, 255, 0.1);
    filter: brightness(1.03);
}

.hero__screen img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__screen--back {
    width: 52%;
    left: 0;
    top: 60px;
    z-index: 1;
    transform: rotateY(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: floatGentle 7s ease-in-out infinite alternate;
}

.hero__screen--mid {
    width: 48%;
    right: 0;
    top: 40px;
    z-index: 2;
    transform: rotateY(-3deg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    animation: floatGentle 7s ease-in-out infinite alternate;
    animation-delay: -2.5s;
}

.hero__screen--front {
    width: 60%;
    left: 20%;
    top: 0;
    z-index: 3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: floatGentle 7s ease-in-out infinite alternate;
    animation-delay: -1s;
}

@keyframes floatGentle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Activity Ticker */
.hero__ticker {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 14px 0;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero__ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.hero__ticker-item {
    white-space: nowrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: var(--font-weight-regular);
}

.hero__ticker-item::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.4;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 0;
    }

    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__screenshots-stack {
        height: 260px;
    }

    .hero__screen--back {
        width: 58%;
        top: 30px;
    }

    .hero__screen--mid {
        width: 52%;
        top: 15px;
    }

    .hero__screen--front {
        width: 72%;
        left: 14%;
    }

    .hero__client-logo {
        height: 18px;
        max-width: 90px;
    }

    .hero__logos-row {
        gap: 24px;
    }
}
