/* Hero Section - Full Width Video Background */
.hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 18, 26, 0.75) 0%, rgba(8, 18, 26, 0.40) 58%, rgba(8, 18, 26, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(90%, var(--container-max));
    margin: 0 auto;
    padding: 7rem 0 clamp(4rem, 9vw, 7rem);
    color: #edf5f7;
}

.hero-content>* {
    max-width: 720px;
}

.hero h1 {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero .lead {
    color: rgba(237, 245, 247, 0.90);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.70);
    color: #fff;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
    border-color: rgba(255, 255, 255, 0.95);
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-eyebrow {
    color: rgba(237, 245, 247, 0.90);
    letter-spacing: 0.28em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}