﻿#tech {
   /* background: var(--surface);*/
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tech-header {
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #C9A84C;
}

    .tech-header .section-divider {
        margin: 1.2rem auto;
    }

.tech-row-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .tech-row-label.mt-large {
        margin-top: 2.5rem;
    }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.tech-card {
    background: var(--surface2);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: background 0.25s;
}

    .tech-card:hover {
        background: var(--deep);
    }

.tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.tech-card:hover .tech-icon {
    opacity: 1;
}

.tech-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.tech-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.25s;
}

.tech-card:hover .tech-name {
    color: var(--gold);
}

.tech-small-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.tech-small {
    background: var(--surface2);
    padding: 1.2rem;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    transition: all 0.2s;
}

    .tech-small:hover {
        background: var(--deep);
        color: var(--gold);
    }


/* TEAM */
#team .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 3.5rem;
}

.team-card {
    background: var(--surface);
    padding: 2rem;
    transition: background 0.25s;
    position: relative;
}

    .team-card:hover {
        background: var(--surface2);
    }

.team-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.team-dept {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    background: var(--gold-dim);
    padding: 4px 8px;
    border-radius: 4px;
}

.team-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(201,168,76,0.3);
}

.team-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.team-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.team-stack {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    opacity: 0.6;
    letter-spacing: 0.1em;
}