:root{
    --navy:#071426;
    --navy2:#0b1d35;
    --blue:#0b63f6;
    --blue2:#2f80ff;
    --text:#101828;
    --muted:#5b6678;
    --line:#e5eaf2;
    --soft:#f5f8fc;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
}

a{
    text-decoration: none;
}

.navbar .nav-link{
    color: var(--text);
}

.navbar .nav-link.active,
.navbar .nav-link:hover{
    color: var(--blue);
}

.brand-logo{
    height: 58px;
    width: auto;
    display: block;
}

.btn-primary{
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 12px 24px rgba(11, 99, 246, .22);
}

.btn-primary:hover{
    background: #0956d9;
    border-color: #0956d9;
}

.bg-soft{
    background: linear-gradient(180deg, #f6f9fd, #ffffff);
}

.hero-section{
    position: relative;
    overflow: hidden;
    min-height: 460px;
    background:
            linear-gradient(90deg, rgba(4,13,26,.96) 0%, rgba(5,18,37,.88) 43%, rgba(5,18,37,.42) 72%),
            radial-gradient(circle at 50% 30%, rgba(45,128,255,.36), transparent 32%),
            linear-gradient(135deg,#061426,#0c2b55);
}

.hero-section::after{
    content:"";
    position:absolute;
    right:-80px;
    top:0;
    width:54%;
    height:100%;
    background:
            linear-gradient(120deg, transparent, rgba(255,255,255,.05)),
            repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 82px);
    opacity:.8;
    pointer-events:none;
}

.hero-section .container{
    position: relative;
    z-index: 1;
}

.terminal-card{
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
}

.terminal-dots{
    display: flex;
    gap: 8px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.terminal-dots span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dots span:nth-child(1){ background:#ff5f56; }
.terminal-dots span:nth-child(2){ background:#ffbd2e; }
.terminal-dots span:nth-child(3){ background:#27c93f; }

.terminal-pre{
    margin:0;
    padding: 1.25rem;
    color:#d8e7ff;
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-wrap;
    background: #08111f;
}

.section-max{
    max-width: 760px;
}

.letter-spacing{
    letter-spacing: .16em;
}

.service-card{
    min-height: 100%;
}

.service-icon{
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.list-group-item{
    padding: 1rem 1.25rem;
}

.footer-dark{
    background: var(--navy);
}

.contact-box{
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1rem;
    padding: 1rem;
    color: #d7e4f6;
    background: rgba(255,255,255,.02);
}

@media (max-width: 991.98px){
    .brand-logo{
        height: 48px;
    }

    .hero-section{
        min-height: auto;
    }
}