.future-section {
  position: relative;
  overflow: hidden;
}

.future-section .gradient-orb--cyan {
  top: 0;
  bottom: auto;
}

.future__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Future cards reuse .project-card but get a distinct "upcoming" look */
.future-section .project-card {
  border-style: dashed;
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(17, 17, 40, 0.55);
}

.future-section .project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 60%);
  pointer-events: none;
}

.future-section .project-card__cta {
  color: var(--text-accent);
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
}

.future-section .project-card__cta:hover {
  transform: none;
  color: var(--text-accent);
}

.future-section .status-badge {
  color: var(--text-accent);
}

@media (max-width: 768px) {
  .future__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .future-section .project-card {
    border-width: 1px;
  }
}

@media (max-width: 480px) {
  .future-section .project-card__desc {
    font-size: 13.5px;
  }
}
