/* ── Hero Widget ────────────────────────────────────────────────────────────── */
.neweb-hero {
    position: relative;
    overflow: hidden;
    padding: 10rem 1.5rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.neweb-hero__gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.neweb-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.neweb-hero__content {
    max-width: 48rem;
    margin: 0 auto;
}

.neweb-hero__heading {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0f172a;
}

[data-theme="dark"] .neweb-hero__heading {
    color: #ffffff;
}

.neweb-hero__heading-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-brand);
}

.neweb-hero__subtitle {
    margin-top: 1.75rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
}

[data-theme="dark"] .neweb-hero__subtitle {
    color: #94a3b8;
}

.neweb-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Screenshot */
.neweb-hero__screenshot {
    margin-top: 4rem;
    perspective: 1200px;
}

.neweb-hero__screenshot-wrapper {
    transform: rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 56rem;
    margin: 0 auto;
}

.neweb-hero__screenshot-wrapper:hover {
    transform: rotateX(2deg);
}

@media (max-width: 640px) {
    .neweb-hero {
        padding: 8rem 1rem 4rem;
    }
    .neweb-hero__actions {
        flex-direction: column;
    }
}
