.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: scale(0.96);
}

.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.small-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtext {
    max-width: 600px;
    margin: 20px auto;
    color: var(--text-muted);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.cap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 10px;
    transition: 0.35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cap-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.cap-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.35s ease;
}

.cap-card:hover .cap-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 132, 255, 0.15);
}

.cap-icon i {
    font-size: 1.7rem;
    color: var(--primary);
}

.cap-card h3 {
    margin-bottom: 12px;
}

.cap-card p {
    font-size: 0.95rem;
}

.cap-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.cap-card:hover::before {
    opacity: 1;
}

.observe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.observe-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 10px;
    transition: 0.35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.observe-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.observe-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.35s ease;
}

.observe-card:hover .observe-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 132, 255, 0.15);
}

.observe-icon i {
    font-size: 1.7rem;
    color: var(--primary);
}

.observe-card h3 {
    margin-bottom: 12px;
}

.observe-card p {
    font-size: 0.95rem;
}

.observe-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.observe-card:hover::before {
    opacity: 1;
}

.bg-card {
    background: var(--bg-card);
}

.border-bottom {
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 25px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.stat-item h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    transition: 0.3s ease;
}

.stat-item:hover h2 {
    letter-spacing: 1px;
    transform: scale(1.08);
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 132, 255, 0.4);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-item::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.dev-grid {
    gap: 30px;
}

.dev-card {
    transition: 0.35s ease;
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 20px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.dev-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.dev-img {
    overflow: hidden;
    border-radius: 6px;
}

.dev-img img {
    transition: transform 0.45s ease, opacity 0.3s ease;
}

.dev-card:hover .dev-img img {
    transform: scale(1.08);
    opacity: 1;
}


.tag-primary {
    color: var(--primary);
    font-size: .8rem;
}

.tag-secondary {
    color: var(--secondary);
    font-size: .8rem;
}

.tag-sky {
    color: #61dbfb;
    font-size: .8rem;
}

.pipeline-grid {
    align-items: center;
}

.pipeline-step {
    text-align: center;
}

.pipeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
}

.pipeline-step {
    transition: 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
}


.git-color {
    color: #f14e32;
}

.success {
    color: #2ecc71;
}

.os-header {
    margin-bottom: 50px;
}

.os-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.os-card {
    text-align: left;
}

.os-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.os-title h3 {
    margin: 0;
    font-size: 1.5rem;
}

.os-desc {
    margin-bottom: 20px;
}

.icon-muted {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.os-card {
    transition: 0.3s ease;
    padding: 20px;
    border-radius: 6px;
}

.os-card:hover {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}


.os-stats {
    display: flex;
    gap: 15px;
}

.info {
    font-size: .8rem;
    color: var(--text-main);
}

.footer-tagline {
    margin-top: 20px;
}

@media (max-width:768px) {
    .os-grid {
        grid-template-columns: 1fr;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }
}

.tech-card-icon,
.pipeline-icon i,
.os-title i {
    transition: 0.3s ease;
}

.tech-card:hover .tech-card-icon,
.pipeline-step:hover .pipeline-icon i,
.os-card:hover .os-title i {
    transform: scale(1.15);
    color: var(--primary);
}