.tech-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.3);
}

.step-number {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    color: transparent;
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
}

.terminal-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
}