*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    overflow-x: hidden
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 22px 36px;
    gap: 10px
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%
}

.brand-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.01em
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: grayscale(100%) brightness(0.7)
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 28%, rgba(0, 0, 0, 0.5) 52%, rgba(0, 0, 0, 0.08) 72%, transparent 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 28%)
}

.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 48px 40px
}

.eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 14px
}

.divider {
    width: 48px;
    height: 1px;
    background: #555;
    margin-bottom: 22px
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(70px, 10.5vw, 128px);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -0.01em
}

.hero-desc {
    font-size: 15.5px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 36px
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px solid #fff;
    padding: 13px 22px;
    text-decoration: none;
    transition: background .2s, color .2s;
    align-self: flex-start
}

.btn-linkedin:hover {
    background: #fff;
    color: #000
}

.li-icon {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    background: rgba(0, 0, 0, 0.6)
}

.strip-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12)
}

.strip-item:last-child {
    border-right: none
}

.strip-icon {
    flex-shrink: 0;
    padding-top: 2px
}

.strip-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.4
}

.strip-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px
}

.strip-desc {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    line-height: 1.55
}