
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7,7,10,0.75) 40%, rgba(7,7,10,0.3) 100%);
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}

.hero-left {
    padding: 80px 48px 80px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line);
}

.hero-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.hero-desc {
    font-size: 13px;
    color: var(--body);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 300px;
}

.hero-btns {
    display: flex;
    gap: 10px;
    margin-top: 36px;
}

.btn-solid {
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-solid:hover { opacity: 0.85; }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid var(--line);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

.hero-right {
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
.stat-item:first-child { border-top: 1px solid var(--line); }

.stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}
.stat-num span { color: var(--purple); }

.stat-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}