.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 28px 30px;
    min-height: calc(100vh - 175px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center
}

.kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono';
    font-size: .72rem;
    letter-spacing: .24em;
    color: var(--cyan)
}

.kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--cyan)
}

h1 {
    font-family: 'Unbounded';
    font-weight: 800;
    font-size: clamp(2.1rem, 5.2vw, 4rem);
    line-height: 1.06;
    margin: 18px 0 14px
}

.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--cyan);
    cursor: default
}

.outline:hover {
    animation: rgb .3s steps(2, end) infinite
}

@keyframes rgb {
    0% {
        text-shadow: 3px 0 var(--amber), -3px 0 var(--cyan)
    }

    50% {
        text-shadow: -3px 0 var(--amber), 3px 0 var(--cyan)
    }

    100% {
        text-shadow: 3px 0 var(--amber), -3px 0 var(--cyan)
    }
}

.role-line {
    font-family: 'JetBrains Mono';
    font-size: 1rem;
    color: var(--muted)
}

#typed {
    color: var(--amber);
    font-weight: 700
}

.cursor {
    color: var(--cyan);
    animation: blink 1s steps(1) infinite
}

.bio {
    margin: 20px 0 22px;
    max-width: 48ch;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px
}

.chip {
    font-family: 'JetBrains Mono';
    font-size: .68rem;
    letter-spacing: .1em;
    padding: 8px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--muted);
    background: var(--surface);
    transition: .25s;
    cursor: default
}

.chip:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-3px)
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .03em;
    cursor: pointer;
    transition: filter .3s, color .3s, border-color .3s, background .5s
}

.btn-primary {
    background: var(--cyan);
    color: #04121c;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px)
}

.btn-primary:hover {
    filter: brightness(1.1) drop-shadow(0 12px 22px var(--cyan-glow))
}

.btn-ghost {
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--text);
    background: transparent
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan)
}

.stats {
    display: flex
}

.stat {
    padding: 0 28px;
    border-left: 1px solid var(--line-strong)
}

.stat:first-child {
    padding-left: 0;
    border: none
}

.stat b {
    display: block;
    font-family: 'Unbounded';
    font-weight: 700;
    font-size: 1.45rem
}

.stat span {
    font-family: 'JetBrains Mono';
    font-size: .6rem;
    letter-spacing: .14em;
    color: var(--muted);
    text-transform: uppercase
}

.hero .left>* {
    opacity: 0;
    animation: rise .8s cubic-bezier(.22, 1, .36, 1) forwards
}

.hero .left>*:nth-child(1) {
    animation-delay: .05s
}

.hero .left>*:nth-child(2) {
    animation-delay: .12s
}

.hero .left>*:nth-child(3) {
    animation-delay: .2s
}

.hero .left>*:nth-child(4) {
    animation-delay: .28s
}

.hero .left>*:nth-child(5) {
    animation-delay: .36s
}

.hero .left>*:nth-child(6) {
    animation-delay: .44s
}

.hero .left>*:nth-child(7) {
    animation-delay: .52s
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}