/* Technical Elements CSS */

.tech-hero {
    background: #fff;
    padding: 200px 0 100px 0;
    position: relative;
    border-bottom: 2px solid var(--color-primary);
}

.tech-hero .title {
    color: var(--color-primary);
}

.tech-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 70, 127, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 70, 127, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.glass-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: 0 40px 80px rgba(0, 70, 127, 0.1);
    position: relative;
    z-index: 10;
}

.tech-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.6s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 70, 127, 0.1);
    border-color: var(--color-primary);
}

.tech-card:hover::before {
    height: 100%;
}

.blueprint-bg,
.section.blueprint-bg {
    background-color: #002d52 !important;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    color: #fff !important;
}

.measurement-line {
    stroke: var(--color-accent);
    stroke-width: 1;
    stroke-dasharray: 4;
}

.floating-data {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-primary);
    background: rgba(0, 70, 127, 0.05);
    padding: 2px 6px;
    border-radius: 2px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .tech-hero {
        padding: 8rem 0 6rem 0;
    }

    div[style*="display: grid; grid-template-columns: 1fr 1fr"],
    div[style*="display: grid; grid-template-columns: 350px 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .glass-feature {
        padding: 2rem;
    }

    aside,
    main {
        width: 100%;
    }

    .container {
        overflow-x: hidden;
    }

    svg {
        max-width: 100%;
        height: auto;
    }
}