/* tech-stack styles — extracted from tecnocys-v3.html */
/* See tecnocys-v3.html for full CSS reference */
/* ═══════════════════════════════
   Tech Stack section
═══════════════════════════════ */
#tech { background: var(--bg2); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}
.tc {
  background: var(--bg3); border: 1px solid var(--bdr2);
  border-radius: var(--r); padding: 1.3rem 1rem;
  text-align: center; transition: all .3s;
}
.tc:hover {
  border-color: rgba(0,200,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.tc-ico  { font-size: 1.9rem; margin-bottom: .5rem; }
.tc-name { font-family: var(--fh); font-size: .88rem; font-weight: 700; letter-spacing: .04em; margin-bottom: .2rem; }
.tc-type { font-size: .65rem; color: var(--mu); font-family: var(--fm); }
@media(max-width:1100px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:768px)  { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
