/* Verticals grid on CTA slide */
.verticals {
  margin: 14px auto 14px;
  max-width: 1040px;
}
.v-eye {
  font: 500 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 10px;
  text-align: center;
}
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v-card {
  background: rgba(3,8,28,0.75);
  border: 1px solid rgba(80,130,220,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.v-card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79,210,255,0.18), transparent 60%);
  opacity: 0; transition: opacity .2s ease;
  pointer-events: none;
}
.v-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79,210,255,0.4);
  background: rgba(11,30,80,0.65);
}
.v-card:hover::before { opacity: 1; }
.v-ico {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 6px rgba(79,210,255,0.4));
}
.v-t {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #E2EEFF;
  margin-bottom: 3px;
}
.v-s {
  font: 400 11.5px/1.4 'Inter', sans-serif;
  color: #7A92B8;
}
.v-more {
  border-style: dashed;
  border-color: rgba(79,210,255,0.35);
  background: rgba(8,22,64,0.3);
}
.v-more .v-t { color: var(--blue-2); }

@media (max-width: 820px) {
  .v-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .v-grid { grid-template-columns: 1fr; }
}
