#hero{

    position:relative;

    overflow:hidden;

}

.hero-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:100px;

}

.hero-left{

    flex:1;

    z-index:2;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:100px;

    background:rgba(91,140,255,.12);

    border:1px solid rgba(91,140,255,.4);

    color:#7aa4ff;

    margin-bottom:25px;

}

.hero h1,
#hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:15px;

}

#hero h2{

    height:45px;

    font-size:34px;

    color:var(--accent);

    margin-bottom:30px;

}

#hero p{

    max-width:620px;

    color:var(--muted);

    font-size:20px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:50px;

}

.btn{

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    transition:.35s;

    font-weight:600;

}

.btn-primary{

    background:linear-gradient(135deg,var(--accent),var(--accent2));

    color:white;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(91,140,255,.35);

}

.btn-secondary{

    color:white;

    border:1px solid var(--border);

}

.btn-secondary:hover{

    background:rgba(255,255,255,.05);

}

.hero-card{

    width:500px;

    padding:35px;

    transform:rotate(4deg);

    transition:.5s;
will-change: transform;
transform-style: preserve-3d;
}

.hero-card:hover{

    transform:rotate(0deg) scale(1.03);

}

.status{

    color:#4ade80;

    margin-bottom:20px;

    font-weight:600;

}

.code{

    font-size:15px;

    overflow:auto;

}

.code pre{

    white-space:pre-wrap;

}

.hero-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

}

.blur1{

    width:500px;

    height:500px;

    background:#5b8cff55;

    left:-120px;

    top:150px;

}

.blur2{

    width:420px;

    height:420px;

    background:#8b5cf655;

    right:-120px;

    top:50px;

}

/* ===========================
   macOS Terminal
=========================== */

.terminal{

    padding:0;

    overflow:hidden;

    border-radius:22px;

}

.terminal-header{
    position: relative;
    height:52px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:0 18px;

    background:#1b1b1d;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.red{

    width:12px;
    height:12px;

    background:#ff5f57;

    border-radius:50%;

}

.yellow{

    width:12px;
    height:12px;

    background:#febc2e;

    border-radius:50%;

}

.green{

    width:12px;
    height:12px;

    background:#28c840;

    border-radius:50%;

}

.terminal-title{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    color:#8b949e;

    font-size:13px;

    font-weight:500;

}

.terminal-body{

    padding:26px;

    min-height:360px;

    font-family:
        SFMono-Regular,
        Menlo,
        Monaco,
        monospace;

    font-size:15px;

    line-height:1.8;

}

#terminalOutput{

    white-space:pre-wrap;

    margin:0;

}

.cursor{

    width:10px;

    height:20px;

    background:#5B8CFF;

    display:inline-block;

    animation:blink .8s infinite;

}

@keyframes blink{

50%{

opacity:0;

}

}
.prompt{

    color:#3fb950;

    font-weight:700;

}

.path{

    color:#58a6ff;

}

.command{

    color:#f0f6fc;

}

.output{

    color:#c9d1d9;

}

.cursor{

    color:white;

    animation:blink .9s infinite;

}

@keyframes blink{

    50%{

        opacity:0;

    }

}

#terminalOutput{

    font-size:15px;

    line-height:1.75;

    margin:0;

}

#terminalOutput div{

    margin-bottom:2px;

}
