/* --- Technical Specs Section --- */
.tech-section {
    padding: 100px 0;
    font-family: var(--font-mono);
    background: var(--bg-secondary);
}

.tech-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 40px;
    background: #080808;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Corner Accents for Tech Container */
.tech-container::before,
.tech-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    transition: all 0.3s;
}

.tech-container::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.tech-container::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.tech-container:hover::before,
.tech-container:hover::after {
    border-color: var(--accent-color);
    width: 100%;
    height: 100%;
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px dashed #333;
    padding-bottom: 20px;
}

.tech-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.tech-header p {
    color: #999;
    font-size: 0.9rem;
}

/* Split Layout */
.tech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .tech-split {
        grid-template-columns: 1fr;
    }
}

.tech-box {
    padding: 20px;
    background: #0f0f0f;
    border-left: 2px solid #333;
}

.code-style {
    color: var(--accent-color);
}

.accent-text {
    margin-bottom: 10px;
    font-weight: 700;
}

.tree-list div {
    padding-left: 10px;
    color: #ccc;
    margin-bottom: 4px;
}

.dimmed {
    color: #666;
    font-size: 0.8rem;
    margin: 5px 0;
}

.bridge-text {
    margin-top: 10px;
    font-weight: 700;
    color: white;
}

/* Signal Mesh */
.tech-mesh-box {
    background: #111;
    padding: 20px;
    border: 1px solid #222;
    margin-bottom: 30px;
    text-align: center;
}

.tech-mesh-box h4 {
    margin-bottom: 10px;
    color: white;
}

.inline-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.inline-list li {
    color: var(--accent-color);
    font-weight: 700;
}

/* Utilities */
.tech-utils-box {
    margin-bottom: 40px;
}

.tech-utils-box h4 {
    margin-bottom: 15px;
    color: white;
    border-bottom: 1px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.dashed-list li {
    margin-bottom: 8px;
    color: #bbb;
}

/* Outro */
.tech-outro {
    text-align: center;
    border-top: 1px dashed #333;
    padding-top: 30px;
}

.tech-outro>p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.signature-block {
    margin-bottom: 30px;
    border: 1px solid #222;
    display: inline-block;
    padding: 15px 30px;
    background: #050505;
}

.signature-block p {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.role-title {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-tagline {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.final-tagline p:last-child {
    color: var(--accent-color);
}