.astrohopper-portal {
    padding-top: clamp(2rem, 5vw, 4.5rem);
    padding-bottom: 4rem;
}

.astrohopper-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border: 1px solid var(--border, rgba(120, 145, 180, .24));
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(79, 110, 255, .18), transparent 35%),
        linear-gradient(145deg, rgba(16, 25, 42, .96), rgba(7, 12, 23, .98));
    overflow: hidden;
}

.astrohopper-hero h1 {
    max-width: 18ch;
    margin-top: .45rem;
    font-size: clamp(2.25rem, 6vw, 4.6rem);
    line-height: .98;
}

.astrohopper-lead {
    max-width: 66ch;
    margin-top: 1.4rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--muted, #b6c0d0);
}

.astrohopper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.7rem;
}

.astrohopper-note {
    margin-top: 1.1rem;
    max-width: 62ch;
    font-size: .93rem;
    color: var(--muted, #9eabc0);
}

.astrohopper-phone {
    width: min(100%, 290px);
    aspect-ratio: 9 / 18;
    justify-self: center;
    padding: 10px;
    border-radius: 36px;
    background: linear-gradient(150deg, #313a4c, #090c12 50%, #4b556b);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .45);
    transform: rotate(4deg);
}

.astrohopper-phone-screen {
    position: relative;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 12%, rgba(255,255,255,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 76% 24%, rgba(255,255,255,.7) 0 1px, transparent 2px),
        radial-gradient(circle at 35% 68%, rgba(255,255,255,.55) 0 1px, transparent 2px),
        #020305;
    color: #ff4242;
}

.astrohopper-phone-screen strong,
.astrohopper-phone-screen small {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: .14em;
}

.astrohopper-phone-screen strong {
    bottom: 13%;
    font-size: .85rem;
}

.astrohopper-phone-screen small {
    bottom: 9%;
    font-size: .65rem;
    color: #a42727;
}

.astrohopper-star {
    position: absolute;
    color: #ff3a3a;
}

.star-one { top: 18%; left: 20%; font-size: 1.4rem; }
.star-two { top: 32%; right: 21%; font-size: 1rem; }
.star-three { top: 53%; left: 30%; font-size: 1.15rem; }

.astrohopper-target {
    position: absolute;
    top: 45%;
    left: 58%;
    width: 46px;
    height: 46px;
    border: 2px solid #ff3535;
    border-radius: 50%;
}

.astrohopper-target::before,
.astrohopper-target::after {
    content: "";
    position: absolute;
    background: #ff3535;
}

.astrohopper-target::before {
    top: 21px;
    left: -12px;
    width: 66px;
    height: 2px;
}

.astrohopper-target::after {
    top: -12px;
    left: 21px;
    width: 2px;
    height: 66px;
}

.astrohopper-line {
    position: absolute;
    top: 36%;
    left: 27%;
    width: 38%;
    height: 2px;
    background: #d42828;
    transform: rotate(31deg);
    transform-origin: left center;
}

.astrohopper-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.3rem;
}

.astrohopper-card,
.astrohopper-section {
    border: 1px solid var(--border, rgba(120, 145, 180, .22));
    border-radius: 22px;
    background: var(--surface, rgba(15, 24, 40, .72));
}

.astrohopper-card {
    padding: 1.5rem;
}

.astrohopper-card h2 {
    margin-top: .75rem;
    font-size: 1.2rem;
}

.astrohopper-card p {
    color: var(--muted, #aeb9ca);
}

.astrohopper-card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(78, 108, 255, .14);
    font-size: 1.3rem;
}

.astrohopper-section {
    display: grid;
    grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr);
    gap: 2rem;
    margin-top: 1.3rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.astrohopper-section h2 {
    margin-top: .35rem;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.astrohopper-steps {
    display: grid;
    gap: .9rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: astro-step;
}

.astrohopper-steps li {
    position: relative;
    min-height: 46px;
    padding-left: 58px;
    color: var(--muted, #b5c0d0);
    counter-increment: astro-step;
}

.astrohopper-steps li::before {
    content: counter(astro-step);
    position: absolute;
    left: 0;
    top: -.15rem;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(75, 106, 255, .15);
    border: 1px solid rgba(100, 130, 255, .34);
    color: var(--text, #eef3ff);
    font-weight: 700;
}

.astrohopper-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted, #b5c0d0);
}

.astrohopper-requirements li + li {
    margin-top: .65rem;
}

@media (max-width: 840px) {
    .astrohopper-hero {
        grid-template-columns: 1fr;
    }

    .astrohopper-phone {
        width: 210px;
        max-height: 390px;
    }

    .astrohopper-grid {
        grid-template-columns: 1fr;
    }

    .astrohopper-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .astrohopper-phone {
        transform: none;
    }
}
