.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    color: var(--text)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 42%, rgba(120, 120, 120, .12), transparent 30%), radial-gradient(circle at 20% 80%, rgba(120, 120, 120, .07), transparent 25%);
    pointer-events: none
}

.hero-container {
    position: relative;
    width: min(1400px, 90%);
    margin: auto;
    padding: 150px 0 110px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 60px
}

.hero-content {
    max-width: 760px;
    animation: heroReveal 1s cubic-bezier(.16, 1, .3, 1) both
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}

.hero-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 18px var(--text)
}

.hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(3.3rem, 7vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 700
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text)
}

.hero p {
    max-width: 590px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 21px;
    border-radius: 100px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    transition: transform .3s ease, background .3s ease, border-color .3s ease
}

.hero-primary {
    background: var(--accent);
    color: var(--bg)
}

.hero-primary span {
    font-size: 1.1rem
}

.hero-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent
}

.hero-secondary span {
    font-size: 1rem;
    transition: transform .3s ease
}

.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-3px)
}

.hero-secondary:hover {
    background: var(--surface)
}

.hero-secondary:hover span {
    transform: translateY(3px)
}

.hero-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visualReveal 1.2s .15s cubic-bezier(.16, 1, .3, 1) both
}

.hero-glow {
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(150, 150, 150, .14);
    filter: blur(70px);
    animation: pulseGlow 5s ease-in-out infinite
}

.hero-orbit {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 50%;
    animation: rotateOrbit 18s linear infinite
}

.orbit-one {
    width: 500px;
    height: 500px
}

.orbit-two {
    width: 340px;
    height: 340px;
    animation-duration: 12s;
    animation-direction: reverse
}

.hero-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px)
}

.hero-card-main {
    width: 390px;
    height: 290px;
    border-radius: 22px;
    overflow: hidden;
    transform: rotate(-5deg);
    animation: floatMain 6s ease-in-out infinite
}

.card-top {
    height: 38px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border)
}

.card-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border)
}

.card-content {
    padding: 38px
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--border);
    border-radius: 8px
}

.skeleton:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    animation: skeletonShimmer 1.7s infinite
}

.skeleton-title {
    width: 72%;
    height: 34px;
    margin-bottom: 24px
}

.skeleton-line {
    width: 100%;
    height: 11px;
    margin-bottom: 12px
}

.skeleton-line.short {
    width: 65%
}

.skeleton-button {
    width: 110px;
    height: 38px;
    margin-top: 30px;
    border-radius: 100px
}

.hero-card-small {
    right: 0;
    bottom: 75px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    transform: rotate(4deg);
    animation: floatSmall 5s 1s ease-in-out infinite
}

.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg)
}

.hero-card-small strong {
    display: block;
    font-size: .78rem
}

.hero-card-small small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .68rem
}

.hero-bottom {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.scroll-line {
    width: 100px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden
}

.scroll-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: var(--text);
    animation: scrollLine 2s ease-in-out infinite
}

.hero-bottom>span:last-child {
    margin-left: auto
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(35px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes visualReveal {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes floatMain {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0)
    }

    50% {
        transform: rotate(-3deg) translateY(-14px)
    }
}

@keyframes floatSmall {

    0%,
    100% {
        transform: rotate(4deg) translateY(0)
    }

    50% {
        transform: rotate(2deg) translateY(-10px)
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(.9);
        opacity: .5
    }

    50% {
        transform: scale(1.15);
        opacity: .8
    }
}

@keyframes rotateOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes skeletonShimmer {
    100% {
        transform: translateX(100%)
    }
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%)
    }

    50%,
    100% {
        transform: translateX(300%)
    }
}

@media(max-width:900px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 130px 0 100px;
        text-align: center
    }

    .hero-content {
        margin: auto
    }

    .hero-eyebrow {
        justify-content: center
    }

    .hero p {
        margin-left: auto;
        margin-right: auto
    }

    .hero-actions {
        justify-content: center
    }

    .hero-visual {
        height: 430px;
        margin-top: -10px
    }

    .hero-card-main {
        width: 340px;
        height: 250px
    }

    .hero-card-small {
        right: 5%
    }

    .orbit-one {
        width: 400px;
        height: 400px
    }

    .orbit-two {
        width: 280px;
        height: 280px
    }
}

@media(max-width:600px) {
    .hero-container {
        width: 90%;
        padding-top: 115px
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.8rem)
    }

    .hero p {
        font-size: .94rem;
        line-height: 1.65;
        margin-top: 25px
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 30px
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
        justify-content: center
    }

    .hero-visual {
        height: 340px;
        margin-top: 10px
    }

    .hero-card-main {
        width: 290px;
        height: 210px
    }

    .card-content {
        padding: 28px
    }

    .skeleton-title {
        height: 27px
    }

    .hero-card-small {
        right: 0;
        bottom: 30px;
        padding: 12px 14px
    }

    .hero-card-small small {
        font-size: .6rem
    }

    .orbit-one {
        width: 330px;
        height: 330px
    }

    .orbit-two {
        width: 230px;
        height: 230px
    }

    .hero-bottom {
        bottom: 18px
    }

    .hero-bottom .scroll-line {
        width: 50px
    }
}

@media(prefers-reduced-motion:reduce) {

    .hero-content,
    .hero-visual {
        animation: none
    }

    .hero-card,
    .hero-orbit,
    .hero-glow,
    .scroll-line span,
    .skeleton:after {
        animation: none
    }
}