/* ════════════════════════════════════════
   PLATFORM-FEATURE.CSS — Features Bento Grid
════════════════════════════════════════ */

#features { background: var(--bg2); }

.bento {
  display: grid;
  grid-template-columns: repeat(3,1fr); 
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3rem;
}

.bento-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.6rem;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg,var(--cyan),var(--violet));
  opacity: 0; transition: opacity .3s;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.bento-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.bento-card:hover::after { opacity: .6; }
.bento-card.span2 { grid-column: span 2; }

/* Icons */
.bento-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.bento-icon svg { width: 24px; height: 24px; }
.bi1 { background: rgba(0,229,255,.1); }  .bi1 svg { color: var(--cyan); }
.bi2 { background: rgba(168,85,247,.1); } .bi2 svg { color: var(--violet); }
.bi3 { background: rgba(244,63,142,.1); } .bi3 svg { color: var(--pink); }
.bi4 { background: rgba(16,185,129,.1); } .bi4 svg { color: var(--green); }
.bi5 { background: rgba(245,158,11,.1); } .bi5 svg { color: var(--gold); }
.bi6 { background: rgba(0,229,255,.1); }  .bi6 svg { color: var(--cyan); }

.bento-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .4rem; }
.bento-desc { font-size: .855rem; color: var(--text2); line-height: 1.65; }

.bento-big-num {
  font-size: 4rem; font-weight: 900; letter-spacing: -.06em;
  background: linear-gradient(135deg,var(--cyan),var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-top: .5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span2 { grid-column: span 1; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
}
