/* ============================================
   VERTICE — CAPABILITY STACK ONLY
   Structural CSS for skills-layout / spec-rows.
   All colour accents use the page's existing purple
   (--purple: #7856FF / --purple-lt: #a78bfa from style.css).
   Everything else is handled by style.css.
============================================ */

/* Force white background and tighten top spacing */
.attributes-section {
    background: #ffffff !important;
    padding-top: 56px !important;
}

/* Two-column grid */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.skills-col-head {
    font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 0.25rem;
}

/* Spec rows — left column */
.spec-row {
    display: grid;
    grid-template-columns: 56px 1fr 100px;
    gap: 12px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.spec-row:last-of-type { border-bottom: none; }

.spec-code {
    font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    color: #7856FF !important;
}

.spec-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
}

.spec-track {
    height: 5px !important;
    background: rgba(120,86,255,0.12) !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    display: block !important;
}

.spec-bar {
    display: block !important;
    height: 100% !important;
    width: var(--w, 80%) !important;
    background: linear-gradient(90deg, #7856FF, #a78bfa) !important;
    border-radius: 3px !important;
}

/* Data in action — right column */
.dia-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dia-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dia-item:last-child { border-bottom: none; }

.dia-metric {
    font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #7856FF;
    line-height: 1.1;
    padding-top: 2px;
}

.dia-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.dia-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.6;
}

.scorecard-disclaimer {
    font-size: 10px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .skills-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
    .spec-track { display: none; }
    .spec-row { grid-template-columns: 48px 1fr; }
}
