/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: +4vh;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-family: var(--font-moonwalk);
    color: white;
    letter-spacing: -0.025em;
}

.hero-description {
    width: 75%;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-normal);
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


