/* Landing page - single static, non-scrollable hero */

.home-body {
    height: 100vh;
    overflow: hidden;
}

.hero {
    height: 100vh;
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* ---- Fancy background ---- */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(1, 249, 196, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 249, 196, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 30%, transparent 75%);
    opacity: 0.7;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.65;
    will-change: transform;
}

.hero-bg-orb-1 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(1, 249, 196, 0.28) 0%, transparent 70%);
    top: -180px;
    left: -120px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.hero-bg-orb-2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(246, 81, 29, 0.22) 0%, transparent 70%);
    bottom: -220px;
    right: -140px;
    animation: orbFloat2 22s ease-in-out infinite;
}

.hero-bg-orb-3 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(2, 106, 84, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: orbFloat3 26s ease-in-out infinite;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(1, 249, 196, 0.1) 0%, transparent 60%);
    animation: glowPulse 9s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 60px) scale(1.08); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-90px, -50px) scale(1.12); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 70px) scale(0.92); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ---- Foreground ---- */

.hero .navbar {
    position: relative;
    z-index: 2;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 3rem 6rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle span {
    display: block;
}

.hero-login {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 0.4375rem 1.125rem;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-login:hover {
    color: var(--light-green) !important;
    border-color: rgba(1, 249, 196, 0.5);
    background: rgba(1, 249, 196, 0.07);
}

.hero-link {
    color: var(--light-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.hero-link:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(1, 249, 196, 0.55);
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.75rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out 0.35s backwards;
}

.hero-locations span {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.hero-locations span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.9375rem;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--light-green);
    opacity: 0.5;
}

.hero-locations span:hover {
    color: var(--light-green);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* ---- Fancy request access button ---- */

.btn-hero-fancy {
    position: relative;
    gap: 0.625rem;
    padding: 1.125rem 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
        linear-gradient(135deg, var(--action-orange) 0%, var(--action-orange-hover) 100%);
    box-shadow:
        0 10px 26px -12px rgba(246, 81, 29, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    isolation: isolate;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background-position 0.3s ease;
}

.btn-hero-fancy::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--action-orange-light) 0%, var(--action-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-fancy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px -14px rgba(246, 81, 29, 0.6),
        0 0 0 4px var(--action-orange-tint),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-fancy:hover::before {
    opacity: 1;
}

.btn-hero-fancy:active {
    transform: translateY(0);
    box-shadow:
        0 8px 20px -12px rgba(246, 81, 29, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-label {
    position: relative;
    z-index: 1;
}

.btn-hero-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

.btn-hero-fancy:hover .btn-hero-arrow {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .home-body,
    .hero {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-content {
        padding: 2rem 1.5rem 4rem;
    }

    .hero-locations {
        gap: 0.5rem 1.5rem;
    }

    .hero-locations span {
        font-size: 0.6875rem;
        letter-spacing: 1.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-orb,
    .hero-bg-glow,
    .hero h1,
    .hero-subtitle,
    .hero-locations,
    .hero-cta {
        animation: none;
    }
}
