/* ===============================================================================
   NOW — Card grid + Update notice
   =============================================================================== */

.now-section {
  padding: 4rem 0 6rem;
}

.now-section--update {
  padding: 2rem 0 4rem;
}

/* --- Card Grid --- */
.now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Card --- */
.now-card {
  background: var(--glass-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.06));
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.now-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
  transform: translateY(-4px);
}

.now-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.15);
  margin-bottom: 1rem;
  color: var(--purple, #8b5cf6);
}

.now-card__title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #f1f5f9);
  margin-bottom: 0.6rem;
}

.now-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary, #94a3b8);
  line-height: 1.6;
}

/* --- Updated Notice --- */
.now-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.82rem;
  color: var(--text-secondary, #94a3b8);
  padding: 0.6rem 1.2rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 8px;
}

.now-updated svg {
  color: var(--purple, #8b5cf6);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .now-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .now-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .now-section {
    padding: 3rem 0 4rem;
  }

  .now-card {
    padding: 1.25rem;
  }

  .now-card__title {
    font-size: 0.95rem;
  }
}
